最近使用angular2,需要安装angular cli环境
然后使用官网教程命令执行
npm install -g @angular/cli
出现异常如下图:
说找不到python2,我已经安装了python3,我就郁闷了。
其实这个问题是由于镜像问题,我们使用npm的最好使用国内镜像,比如淘宝的,要不就用vpn吧
分别执行以下命令:
- npm install -g cnpm --registry=https://registry.npm.taobao.org
- cnpm install -g angular-cli
- ng new start --registry=https://registry.npm.taobao.org
参考地址:https://www.zhihu.com/question/56215327/answer/148133191