npm命令安装cnpm或者其他模块时报错:This is most likely not a problem with npm itself and is related to network ...

使用npm安装cnpm和淘宝镜像时一直不成功,错误信息如下:

npm命令安装cnpm或者其他模块时报错:This is most likely not a problem with npm itself and is related to network ..._第1张图片
image.png

电脑使用代理网络上网,看到网上很多说配置cmd网络代理后就好了,但是我配置完还是不行,又看到说npm默认使用127.0.0.1代理上网,通过使用npm config set proxy null取消默认代理就可以,我配置完还是不行,但是这个回答给了我启发,于是我尝试使用
npm config set proxy http://xxxxx.xxx.xxx 命令(//后写网络代理的服务器),结果就成功了
这里做一个小的总结:
1、使用netsh winhttp import proxy source=ie配置cmd网络代理,配置完可以使用netsh winhttp show proxy 查看是否配置成功及代理服务器
2、使用npm config set proxy http://xxxxx.xxx.xxx配置npm网络代理,代理服务器地址是netsh winhttp show proxy 所显示的地址

你可能感兴趣的:(npm命令安装cnpm或者其他模块时报错:This is most likely not a problem with npm itself and is related to network ...)