A complete log of this run can be fund in: C\Users\

npm ERR!:A complete log of this run can be fund in: C\Users\

解决办法:

1、删除 node-module 和 package-lock.json

如图:(如果有这2个选项的话。就删,没有就不用删)

2、强制清除npm缓存:

npm cache clean --force

3、重新安装 npm:

npm install -g

 或者

cnpm install  -g

4、重新运行项目:

npm start

猜你喜欢

转载自blog.csdn.net/qq_22182989/article/details/125444428