더 알아보기/에러

[Error] npm install 설치 시 npm ERR! code ERESOLVE 오류

은돌1113 2021. 12. 24. 15:57
npm install react-wordcloud

를 설치해서 워드 클라우드가 되는 지 실험 해보려고 했는 데

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.13.0" from react-wordcloud@1.2.7
npm ERR! node_modules/react-wordcloud
npm ERR!   react-wordcloud@"*" 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\kim99\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\kim99\AppData\Local\npm-cache\_logs\2021-12-24T06_50_30_779Z-debug.log

아래 출처에 따라서 다시 설치 했더니 워드 클라우드를 구현 할 수 있었다!

npm install react-wordcloud --save --legacy-peer-deps

 

https://iancoding.tistory.com/154

 

[오류해결] npm install 설치시 npm ERR! code ERESOLVE

npm install react-paypal-express-checkout --save npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree paypal 이용하려고 설치하려고 하자 위와 같이 오류가 났다.  해결방법 npm i..

iancoding.tistory.com