ant-design-pro安装报错 ERESOLVE unable to resolve dependency tree npm ERR!

1,175 阅读1分钟

错误详情:

E:\dev\ant-design-pro>npm install
npm ERR! code ERESOLVE
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 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 ERR!     C:\Users\Administrator\AppData\Local\npm-cache\_logs\2023-01-09T16_01_59_090Z-debug-0.log

报错原因:npm的版本在v7.x以上,会出现上游依赖冲突;–legacy-peer-deps:安装时忽略所有 peerDependencie,默认使用npm v4-6版本的安装模式,安装过程中是会跳过对等依赖项。

解决方案:使用下面的命令进行安装

npm instaill --legacy-peer-deps