现象
拉别人项目到本地之后,安装依赖报错:
npm :this is an error with npm itself. Please report this error at: https://github.com/npm/npm/issues
解决方案
1.npm cache clean -f // 清除npm缓存
2.删除package-lock.json
3.npm install
如果此方法不行采用就将node升级版本,就可以完美解决了
拉别人项目到本地之后,安装依赖报错:
npm :this is an error with npm itself. Please report this error at: https://github.com/npm/npm/issues
1.npm cache clean -f // 清除npm缓存
2.删除package-lock.json
3.npm install
如果此方法不行采用就将node升级版本,就可以完美解决了