npm ERR! code EEXIST npm ERR! path C:\Users\Administrator\AppData\Roaming\npm\vue npm ERR! EEXIST: file already exists npm ERR! File exists: C:\Users\Administrator\AppData\Roaming\npm\vue npm ERR! Remove the existing file and try again, or run npm npm ERR! with --force to overwrite files recklessly. npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Administrator\AppData\Local\npm-cache\_logs\2023-06-07T04_03_36_874Z-debug-0.log
时间: 2023-09-05 15:09:31 浏览: 106
$ npm install -g truffle npm ERR! code EEXIST错误解决方法
这个报错是因为在你的计算机上已经存在一个名为"vue"的目录,而npm又试图在同一路径下创建一个新的"vue"目录,从而导致了冲突。
解决方法如下:
1. 打开命令提示符或终端窗口,进入到你的项目根目录下。
2. 运行以下命令:npm cache clean --force
3. 运行以下命令:npm install -g @vue/cli
这样就可以清除缓存并重新安装vue-cli了。如果还有问题,可以再跟我提问。
阅读全文