安装 react-leaflet-search 时出现问题

problem when i install react-leaflet-search

我在尝试安装 react-leaflet-search 时遇到问题我遇到了这个错误

npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: map-leaflet@0.1.0
npm ERR! Found: react@17.0.2
npm ERR! node_modules/react
npm ERR! react@"^17.0.2" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^16.12.0" from react-leaflet-search@2.0.1
npm ERR! node_modules/react-leaflet-search
npm ERR! react-leaflet-search@"*" 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\ramy\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\ramy\AppData\Local\npm-cache_logs21-09-25T09_01_07_075Z-debug.log

而且我不想更改我的 React 版本!

尝试npm install react-leaflet-search --legacy-peer-deps

在 NPM 7.0 之前,如果缺少对等依赖项,NPM 会通知您。从 NPM 7.0 开始,如果缺少对等依赖项,NPM 将尝试安装它,从而导致您的冲突。 --legacy-peer-deps 标志使 NPM 遵循 7.0 之前的约定。