博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
npm ERR!无法安装任何包的解决办法
阅读量:5740 次
发布时间:2019-06-18

本文共 1121 字,大约阅读时间需要 3 分钟。

hot3.png

npm ERR! Windows_NT 6.1.7601npm ERR! argv "E:\\node\\\\node.exe" "E:\\node\\node_modules\\npm\\bin\\npm-cli.js" "install"npm ERR! node v0.12.0npm ERR! npm v2.5.1npm ERR! code ECONNRESETnpm ERR! network tunneling socket could not be established, cause=connect ECONNREFUSEDnpm ERR! network This is most likely not a problem with npm itselfnpm ERR! network and is related to network connectivity.npm ERR! network In most cases you are behind a proxy or have bad network settings.npm ERR! networknpm ERR! network If you are behind a proxy, please make sure that thenpm ERR! network 'proxy' config is set properly. See: 'npm help config'npm ERR! Please include the following file with any support request:npm ERR! E:\study\angular-phonecat\npm-debug.log

错误代码如上:

解决办法:

删除npmrc文件。

使用镜像

镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在):

1.通过config命令

1

2

npm config set registry http://registry.cnpmjs.org

npm info underscore (如果上面配置正确这个命令会有字符串response)

2.命令行指定

1

npm --registry http://registry.cnpmjs.org info underscore

3.编辑 ~/.npmrc 加入下面内容

1

registry = http://registry.cnpmjs.org

转载于:https://my.oschina.net/u/2246951/blog/756639

你可能感兴趣的文章
深入理解Python中的ThreadLocal变量(上)
查看>>
如果一切即服务,为什么需要数据中心?
查看>>
《游戏开发物理学(第2版)》一导读
查看>>
Erlang简史(翻译)
查看>>
深入实践Spring Boot2.4.2 节点和关系实体建模
查看>>
信息可视化的经典案例:伦敦地铁线路图
查看>>
10个巨大的科学难题需要大数据解决方案
查看>>
Setting Up a Kerberos server (with Debian/Ubuntu)
查看>>
用 ThreadLocal 管理用户session
查看>>
setprecision后是要四舍五入吗?
查看>>
shiro初步 shiro授权
查看>>
上云就是这么简单——阿里云10分钟快速入门
查看>>
MFC多线程的创建,包括工作线程和用户界面线程
查看>>
我的友情链接
查看>>
FreeNAS8 ISCSI target & initiator for linux/windows
查看>>
cvs文件提交冲突解决方案
查看>>
PostgreSQL数据库集群初始化
查看>>
++重载
查看>>
Rainbond 5.0.4版本发布-做最好用的云应用操作系统
查看>>
nodejs 完成mqtt服务端
查看>>