gyp ERR,Npm 无法获取本地颁发者证书

2024-05-12

我正在致力于 Windows 10 的全新安装。唯一的事情是我安装了 cygwin 以在 cmd 中获取 unix 命令。

当我打字时npm install -g @angular/cli它下载了必要的文件,但我收到错误:

gyp ERR! configure error
gyp ERR! stack Error: unable to get local issuer certificate
gyp ERR! stack     at Error (native)
gyp ERR! stack     at TLSSocket.<anonymous> (_tls_wrap.js:1092:38)
gyp ERR! stack     at emitNone (events.js:86:13)
gyp ERR! stack     at TLSSocket.emit (events.js:185:7)
gyp ERR! stack     at TLSSocket._finishInit (_tls_wrap.js:610:8)
gyp ERR! stack     at TLSWrap.ssl.onhandshakedone (_tls_wrap.js:440:38)
gyp ERR! System Windows_NT 10.0.15063
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\user\\AppData\\Roaming\\npm\\node_modules\\@angular\\cli\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd C:\Users\user\AppData\Roaming\npm\node_modules\@angular\cli\node_modules\node-sass
gyp ERR! node -v v6.11.2
gyp ERR! node-gyp -v v3.6.2
gyp ERR! not ok
Build failed with error code: 1

我编辑了 npm 配置文件,如“npm config edit”。在打开的文件中,我添加了以下设置:

strict-ssl=false
http_proxy=null
proxy=null

但这不起作用,我仍然收到相同的错误。还有什么,npm install也打破了相同的结果。


我遇到过同样的问题。 以下解决了我的问题

  • Windows

set NODE_TLS_REJECT_UNAUTHORIZED=0

  • Linux

export NODE_TLS_REJECT_UNAUTHORIZED=0

Then npm install again

您可以参考here https://github.com/nodejs/node-gyp/issues/695了解更多信息。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

gyp ERR,Npm 无法获取本地颁发者证书 的相关文章

随机推荐