❤ npm install报错以及各种错误码的含义
1 npm install 10054
报错,Error while executing
造成这个错误很有可能是网络不稳定,连接超时导致的,
如果再次尝试后依然报错,可以执行下面的命令。
打开Git命令页面,执行git命令脚本:
修改设置,解除ssl验证
git config --global http.sslVerify "false"
重新执行即可
2 npm -4048
npm -errno -4048
问题:
错误记录:
npm ERR! code EPERM
npm ERR! errno -4048
npm ERR! syscall scandir
npm ERR! Error: EPERM: operation not permitted,
解决:
权限不够
c
npm cache verify 清除缓存
npm 错误 -errno -128
问题:
解决:
① 通过修改git配置,将URL从ssh更换为https,这种方法使用时,需要先关闭ssl认证,否则可能导致执行不成功
git config --global http.sslverify "false"
git config --global url."https://".insteadOf git://
npm install
② 使用淘宝镜像,然后设置ssl,之后再重新安装依赖,执行命令如下
1> 查看当前项目镜像
npm get registry
2> 切换淘宝镜像
npm config set registry https://registry.npm.taobao.org
3> 关闭ssl认证
git config --global http.sslverify "false"