无法安装Angular CLI

时间:2018-11-21 09:54:35

标签: javascript node.js angular npm

安装角度cli时出现错误。 请帮助我

 C:\Users\A737539>npm install -g @angular/cli@6.1.3
    npm ERR! code E502
    npm ERR! 502 Parent proxy unreacheable: @angular/cli@6.1.3

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\A737539\AppData\Roaming\npm-cache\_logs\2018-11-21T09_33_42_128Z-debug.log

谢谢, 普什卡

1 个答案:

答案 0 :(得分:0)

这是在代理网络上如何使npm工作:

使用以下字段创建 .npmrc 文件:

registry= //local artifactory site if any - remove if not
strict-ssl=false
cache=.\npmcache
prefix=.\npm
package-lock=false
loglevel=verbose
proxy= http://domain\username:password@servername:port/
https-proxy= http://domain\username:password@servername:port/
unsafe-perm=true
sass-binary-site= // if any local binary site is present - remove if not

现在将此文件放置到上述位置:C:\Users\A737539>,然后 运行npm install命令即可​​。 完成后,您可以将该文件放入存储库(使用cli创建的任何新应用程序)中,这样就不必每次手动设置代理。