vue安装element ui失败

错误日志:
npm install element-ui
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/vue
npm ERR! vue@“^3.2.13” from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer vue@“^2.5.17” from [email protected]
npm ERR! node_modules/element-ui
npm ERR! element-ui@“*” from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See C:\Users\Administrator\AppData\Local\npm-cache\eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:

解决方法:使用稳定版本npm
先查看npm 版本
npm -v
npm install -g [email protected]

猜你喜欢

转载自blog.csdn.net/qq_39598825/article/details/127720205