npm安装antdpro出现npm ERR! ERESOLVE unable to resolve dependency tree

npm i @ant-design/pro-cli -g
pro create myapp


? 🐂 使用 umi@4 还是 umi@3 ? (Use arrow keys)
   umi@4
❯  umi@3


? 🚀 要全量的还是一个简单的脚手架? (Use arrow keys)
 simple
❯ complete

$ cd myapp && npm install
PS D:\HTMLStudy\umi\antdpro\complete_myapp> npm install
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: ant-design-pro@5.2.0
npm ERR! Found: react@17.0.2
npm ERR! node_modules/react
npm ERR!   react@"^17.0.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^16.8.4" from @ant-design/charts@0.9.13
npm ERR! node_modules/@ant-design/charts
npm ERR!   @ant-design/charts@"^0.9.4" 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 D:\node\node_cache\eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     D:\node\node_cache\_logs\2022-11-24T09_57_40_611Z-debug-0.log

完美解决
原因:npm 升级到 7.x以上后,会出现上游依赖冲突;–legacy-peer-deps:安装时忽略所有 peerDependencie,默认使用npm 4-6版本的安装模式,安装过程中是会跳过对等依赖项。

C:\Users\Arbor>node -v
v16.17.0

C:\Users\Arbor>npm -v
8.15.0

C:\Users\Arbor>

npm i --legacy-peer-deps
posted @ 2022-11-24 18:07  Arborblog  阅读(1295)  评论(0编辑  收藏  举报