NodeJS 当我去任何依赖项安装我得到一个错误像这样

nfzehxib  于 2023-01-20  发布在  Node.js
关注(0)|答案(2)|浏览(179)
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: chat_application@0.1.0   
npm ERR! Found: react@18.1.0
npm ERR! node_modules/react
npm ERR!   react@"^18.1.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^16.8.0 || ^17.0.1" from react-chat-engine@1.11.22
npm ERR! node_modules/react-chat-engine
npm ERR!   react-chat-engine@"*" from the root project
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\Swapnil\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\Swapnil\AppData\Local\npm-cache\_logs\2022-04-28T04_06_41_338Z-debug-0.log
k2arahey

k2arahey1#

尝试使用- npm安装-保存模块名称-传统对等部署

ovfsdjhp

ovfsdjhp2#

尝试使用:

npm install --legacy-peer-deps

或:

npm install --force

相关问题