在npm的安装时,npm install 出现了This is probably not a problem with npm. There is likely additional logging output above.错误!

如下图:

关于——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

关于——This is probably not a problem with npm. There is likely additional logging output above.——的解决方法

相关文章:

  • 2021-10-10
  • 2021-05-14
  • 2021-08-06
  • 2022-12-23
猜你喜欢
  • 2020-07-24
  • 2022-12-23
  • 2021-12-24
  • 2021-12-05
  • 2022-12-23
  • 2021-11-08
相关资源
相似解决方案