出现依赖包冲突的解决方案,code ERESOLVE peer vue@“^2.6.14 || ^3.2.0“ from [email protected]

出现依赖包冲突的解决方案

报错:

[18:53:35] npm ERR! code ERESOLVE
[18:53:35] npm ERR! ERESOLVE unable to resolve dependency tree
[18:53:35] npm ERR! 
[18:53:35] npm ERR! While resolving: kamp-website@0.0.0
[18:53:35] npm ERR! Found: vue@3.2.47
[18:53:35] npm ERR! node_modules/vue
[18:53:35] npm ERR!   vue@"^3.2.0" from the root project
[18:53:35] npm ERR!   peer vue@"^2.6.14 || ^3.2.0" from pinia@2.0.33
[18:53:35] npm ERR!   node_modules/pinia
[18:53:35] npm ERR!     pinia@"^2.0.33" from the root project
[18:53:35] npm ERR! 
[18:53:35] npm ERR! Could not resolve dependency:
[18:53:35] npm ERR! peer vue@">= 2.5 < 2.7" from @vue/composition-api@1.7.1
[18:53:35] npm ERR! node_modules/@vue/composition-api
[18:53:35] npm ERR!   peer @vue/composition-api@"^1.4.0" from pinia@2.0.33
[18:53:35] npm ERR!   node_modules/pinia
[18:53:35] npm ERR!     pinia@"^2.0.33" from the root project
[18:53:35] npm ERR! 
[18:53:35] npm ERR! Fix the upstream dependency conflict, or retry
[18:53:35] npm ERR! this command with --force, or --legacy-peer-deps
[18:53:35] npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
[18:53:35] npm ERR! 
[18:53:35] npm ERR! See /root/.npm/.npm_cache/eresolve-report.txt for a full report.
[18:53:35] npm timing npm Completed in 8317ms
[18:53:35] 
[18:53:35] npm ERR! A complete log of this run can be found in:
[18:53:35] npm ERR!     /root/.npm/.npm_cache/_logs/2023-03-16T10_53_35_924Z-debug.log
[18:53:35] [ERROR] BUILD ERROR
[18:53:35] [ERROR] 115040348
[18:53:35] [ERROR] 1

用 --legacy-peer-deps 忽略不兼容的依赖包版本

npm install --legacy-peer-deps

猜你喜欢

转载自blog.csdn.net/qq_41697998/article/details/129619514