当前位置:   article > 正文

npm安装依赖包出错问题处理_npm cache clean --force

npm cache clean --force

本文记录在使用npm安装依赖包过程中踩过的坑。一般来说,npm安装失败时需要注意下面几点:

  • 是否能够访问安装源:检查代理和当前安装源
  • 当前的node版本是否兼容已有模块node_modules
  • 输入的依赖包名称是否正确

解决npm ERR! code ENOENT

解决方案1:npm cache clean --force

解决方案2:

npm ERR! enoent ENOENT: no such file or directory, open '/home/sida/repo/did-sidetree.js/node_modules/write-pkg/node_modules/pify/package.json.909409536'

用npm install 单独安装报错中出现的包名:例如出现上边的错,则npm install pify --registry=https://registry.npm.taobao.org 

npm ERR! code ECONNRESET

在使用npm安装node的模块的时候,经常会出现下面的一些错误:

  • npm ERR! network tunneling socket could not be established, cause=connect ECONNREFUSED
  • npm ERR! code ECONNRESET
  • npm ERR! code ETIMEOUT
  • npm ERR! code ENOFFOUND

这些错误的原因很有可能是npm使用默认的源下载安装包,而默认的安装源是国外网站,国内访问不了无法获取依赖包信息。

这时只需要更换为国内的安装源即可,可在命令行更换为国内淘宝的源:

  1. # 查看自己的安装源
  2. npm config get registry
  3. # 更换npm源为国内淘宝镜像
  4. npm config set registry http://registry.npm.taobao.org/
  5. # 或者更换为国内npm官方镜像
  6. npm config set registry http://registry.cnpmjs.org/
  7. # 还原npm源
  8. npm config set registry https://registry.npmjs.org/

Bash

npm安装源设置

上面介绍了通过命令行设置安装源地址的办法,另外还可以设置代理,以及编辑配置文件等方法。

  1. # 命令行设置代理
  2. npm config set proxy="http://127.0.0.1:1034"
  3. # 还可以直接使用npm设置,不需要config
  4. npm --registry https://registry.npm.taobao.org info underscore

Bash

另外还可以直接编辑npm安装配置文件:.npmrc,在文件末尾添加两行:

  1. registry="http://registry.npmjs.org"
  2. proxy="http://127.0.0.1:1034"

Config

这个文件一般在用户目录或者安装目录下。

SSL Error: CERT_UNTRUSTED

这个是因为HTTPS的设置问题,可以有两种办法解决:

  • 关掉SSL检测
  • 使用HTTP连接的安装源

命令如下:

  1. # 关闭SSL检查
  2. npm config set strict-ssl false
  3. # 使用http安装源
  4. npm config set registry="http://registry.npmjs.org/"

Bash

npm WARN unmet dependency

这个错误的原因很有可能是按照依赖包的过程重网络超时等导致,可以通过清空node_module修复:

  1. # 删除node_modules目录
  2. rm -rf node_modules/
  3. # 情况缓存
  4. npm cache clean
  5. # 重新安装
  6. npm install

Bash

有时候,因为node版本过低也会导致该问题,可以使用下面命令更新node

npm update -g npm

Bash

npm ERR! code EINTEGRITY

npm install时报错:
npm ERR! code EINTEGRITY
npm ERR! sha512- sha512-rkIa1OSVWTt4g9leLSK/PsqOj3HZbDKHbZj

这个问题有可能是npm版本过低导致,需要更新npm版本:

  1. # 更新npm
  2. npm install -g npm
  3. # 继续安装
  4. npm install

Bash

npm ERR! code EPERM

安装时出现:

npm ERR! code EPERM
npm ERR! errno -4048

这个错误出现的原因很多,其中一个是因为npm安装缓存的问题,可以尝试执行下面命令清空缓存。

npm cache clean --force
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号