使用npm install时出现SELF_SIGNED_CERT_IN_CHAIN错误

时间:2014-07-10 06:07:14

标签: node.js npm

每当我运行npm install时,我都会收到错误

错误:SELF_SIGNED_CERT_IN_CHAIN。

如何解决此错误?

1 个答案:

答案 0 :(得分:2)

即使我曾经遇到过这个错误。请尝试以下步骤。

要克服此错误需要遵循的步骤:

1)按顺序运行这三个命令。

  • npm config set strict-ssl false

  • npm update npm -g

  • npm config set strict-ssl true

2)使用以下命令在npm配置中设置属性代理和https-proxy:

  • npm config set proxy =“http://”proxy-name“:8080”

  • npm config set https-proxy =“http://”proxy-name“:8080”

然后尝试使用您尝试过的命令安装软件包。

希望这有帮助。