关于——This is probably not a problem with npm. There is likely additional logging output above.——的解决方法
时间:2020-08-12 20:07:55
收藏:0
阅读:1983
在npm的安装时,npm install 出现了This is probably not a problem with npm. There is likely additional logging output above.错误!
如下图:
额外的日志输出错误!!!在网上百度了一般的解决方法,适用于大部分报此类错误的方法如下:
由于npm install之后,会记录信息,把之前装的删除
- rm -rf node_modules
- rm package-lock.json
- npm cache clear --force
- npm install
但是尽管尝试了许多次,更换head-master版本重新npm install结果都会卡在node install.js,最后选择了忽略部分依赖成功解决,代码如下:
nmp install --ignore scripts
npm install
原文:https://www.cnblogs.com/afeiiii/p/13492525.html
评论(0)