当我尝试安装react-leaf -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:UsersramyAppDataLocalnpm-cacheeresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! C:UsersramyAppDataLocalnpm-cache_logs2021-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之前的约定。