我无法安装 npm install --save react-tilt
I can't install npm install --save react-tilt
C:\Users\JohnSam\Desktop\React\smartapp>npm install --save react-tilt
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: smartbrain2@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@"^15.0.0 || ^16.0.0-beta || ^16.0.0" from react-tilt@0.1.4
npm ERR! node_modules/react-tilt
npm ERR! react-tilt@"*" 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\Sengk\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\Sengk\AppData\Local\npm-cache\_logs21-11-30T08_35_11_646Z-debug.log
错误提示您使用的 React 版本 (17.0.2) 与 react-tilt
不兼容。
查看 react-tilt
的 package.json 文件时,您会发现它需要 react@^15.0.0 || ^16.0.0-beta || ^16.0.0
.
的对等依赖性
自 npm v7 以来,NPM 默认强制执行正确的 peerdependencies。如果你真的想要,你可以忽略这个检查和 运行 npm install --save --legacy-peer-deps react-tilt
.
请注意,这意味着不能保证此包将完全适用于 React 17。
我使用的是 React 18.1.0,并且遇到了与 react-tilt 相同的问题。
为了修复它,我 运行 这个命令:
npm install --save --legacy-peer-deps react-tilt
目前一切正常。
C:\Users\JohnSam\Desktop\React\smartapp>npm install --save react-tilt
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: smartbrain2@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@"^15.0.0 || ^16.0.0-beta || ^16.0.0" from react-tilt@0.1.4
npm ERR! node_modules/react-tilt
npm ERR! react-tilt@"*" 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\Sengk\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\Sengk\AppData\Local\npm-cache\_logs21-11-30T08_35_11_646Z-debug.log
错误提示您使用的 React 版本 (17.0.2) 与 react-tilt
不兼容。
查看 react-tilt
的 package.json 文件时,您会发现它需要 react@^15.0.0 || ^16.0.0-beta || ^16.0.0
.
自 npm v7 以来,NPM 默认强制执行正确的 peerdependencies。如果你真的想要,你可以忽略这个检查和 运行 npm install --save --legacy-peer-deps react-tilt
.
请注意,这意味着不能保证此包将完全适用于 React 17。
我使用的是 React 18.1.0,并且遇到了与 react-tilt 相同的问题。 为了修复它,我 运行 这个命令:
npm install --save --legacy-peer-deps react-tilt
目前一切正常。