我有一个问题,当我尝试安装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_logs\2021-09-25T09_01_07_075Z-debug.log我不想改变我的react版本!
发布于 2021-09-27 15:24:57
试试npm install react-leaflet-search --legacy-peer-deps
在NPM 7.0之前,如果缺少对等依赖关系,NPM会通知您。从NPM 7.0开始,如果缺少对等依赖,NPM会尝试安装它,从而导致冲突。--legacy-peer-deps标志使NPM遵循7.0版本之前的约定。
https://stackoverflow.com/questions/69324734
复制相似问题