npm ERR! This is an error with npm itself. Please report this error at:
npm ERR! https://npm.community
npm ERR! A complete log of this run can be found in:
解决方法:
1、删除下载好的node_modules
2、删除package-lock.json文件
3、以管理员权限执行下面的命令(Mac使用sudo):
Windows: npm cache clean --force
Mac:sudo npm cache clean --force
4、npm install
网友评论