共计 835 个字符,预计需要花费 3 分钟才能阅读完成。
报错内容
报错起因:因为装置的依赖 peerDependency 和原先已装置的依赖有抵触
While resolving: uni-preset-vue@0.0.0
Found: vue@3.2.47
node_modules/vue
peer vue@"^3.2.25" from @vitejs/plugin-vue@4.3.4
node_modules/@vitejs/plugin-vue
...
Conflicting peer dependency: vue@3.3.4
node_modules/vue
peer vue@">= 2.5 < 2.7" from @vue/composition-api@1.7.2
node_modules/@vue/composition-api
peerOptional @vue/composition-api@"^1.4.0" from pinia@2.0.34
node_modules/pinia
pinia@"2.0.34" from the root project
Fix the upstream dependency conflict, or retry
this command with --force or --legacy-peer-deps
to accept an incorrect (and potentially broken) dependency resolution.
解决方案
- 在装置命令前面加上 –force 或者 –legacy-peer-deps,让它疏忽这个抵触
@REM npm 装置
npm i pinia@2.0 --legacy-peer-deps
@REM node 装置
yarn add pinia@2.0 --legacy-peer-deps
留神:这样装置并不能真正解决问题,在之后装置其余包的时候还是须要加上这个后缀
- 先在 package.json 文件中将要装置的依赖加上,而后删除 node-modules 目录和 package-lock.json 文件,重新安装依赖,让 npm install 时去从新匹配依赖
正文完