安装 npm 包时出现问题,react-circular-progressbar

issue installing npm package, react-circular-progressbar

当我将 react-circular-progressbar 安装到我的 React 项目中时,它显示错误,为什么?

npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: nadeems-portfolio@0.1.0
npm ERR! Found: react@17.0.1
npm ERR! node_modules/react
npm ERR!   react@"^17.0.1" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^0.14.0 || ^15.0.0 || ^16.0.0" from react-circular-progressbar@2.0.3
npm ERR! node_modules/react-circular-progressbar
npm ERR!   react-circular-progressbar@"*" 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 /home/nadeem/.npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/nadeem/.npm/_logs/2020-12-05T09_58_59_238Z-deb

这是因为无法结合您当前的依赖项解决其中一个依赖项。

以下部分表示ciruclar-progressbar(版本2.0.3)需要react 15或16作为对等依赖,而您正在使用依赖列表中的较新版本。

Could not resolve dependency: peer react@"^0.14.0 || ^15.0.0 || ^16.0.0" from react-circular-progressbar@2.0.3

有几个解决方案;

  • 降级不符合您要安装的软件包限制的软件包
  • 查找您尝试安装的软件包版本,该版本已更新其对等依赖项以包含 react 17
  • 使用npm install <package-name> --force忽略它(真的不推荐,除非你手动验证没有不兼容)
  • 使用npm install <package-name> --legacy-peer-deps.

前两个选项是根据你给出的错误推导出来的。而最后两个选项在错误本身中提供。