提示A complete log of this run can be found in问题解决

npm报错 This is probably not a problem with npm,there is likely additional logging output above可能的原因 A complete log of this run can be found in问题解决
提示A complete log of this run can be found in问题解决_第1张图片
清理缓存命令:

npm cache clean --force

解决方法:

输入npm install 或 cnpm install 后,再次启动

npm run dev 成功启动!

全局更新

npm install npm -g

或者用淘宝镜像命令

cnpm install npm -g

如以上处理方式后,仍然报错,

可以先删除整个文件夹,重新新建文件夹后npm install即可

rm -rf node_modules
rm package-lock.json
npm cache clear --force
npm install

你可能感兴趣的:(笔记,vue)