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

npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: @testing-library/react@13.4.0
npm ERR! Found: react@17.0.2
npm ERR! node_modules/react
npm ERR!   peer react@"17.0.2" from react-dom@17.0.2
npm ERR!   node_modules/react-dom
npm ERR!     react-dom@"^17.0.2" from the root project
npm ERR!   peer react@">= 16" from react-scripts@5.0.1
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 

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


版权声明:本文为tea_tea_原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。