解决安装用npm出现以下异常报错的解决方案

npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: @testing-library/[email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/react
npm ERR!   peer react@"17.0.2" from [email protected]
npm ERR!   node_modules/react-dom
npm ERR!     react-dom@"^17.0.2" from the root project
npm ERR!   peer react@">= 16" from [email protected]
npm ERR!   node_modules/react-scripts
npm ERR!     react-scripts@"5.0.1" from the root project
npm ERR!   1 more (the root project)
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\admin\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\admin\AppData\Local\npm-cache\_logs\2022-11-09T02_08_32_825Z-debug-0.log

 本人是在react中遇到,但同样可以解决Vue中遇到此种报错

解决方案 

在你所要安装的命令行后加上‘--legacy-peer-deps’

以安装axios为例

 npm add axios --legacy-peer-deps 

这样就可以解决异常报错的问题 

猜你喜欢

转载自blog.csdn.net/tea_tea_/article/details/127777598