서론
Window에서 Mac으로 변경하고 이런 저런 설정을 잡는 도중 여러 오류를 발견하였다.
이런 오류에 대해 기록하고 공유하고자 글을 작성합니다.
본론
답은 ERP! 경고문에 나와있다.
1. react 버전을 맞춰라.
2. --legacy-peer-deps 를 이용해라.
해결
npm install --legacy-peer-deps
아래 내용을 통해 비교적 쉽게 해결할 수 있었다.
Unable to resolve dependency tree error when installing npm packages
When trying to install the npm packages using npm i command, I am getting the following exception: I have tried reinstalling the Node.js package and setting the proxy to off using: set HTTP_PROXY=...
stackoverflow.com
참고자료
https://velog.io/@dev_cecy/npm-install-%EC%98%A4%EB%A5%98-code-ERESOLVE
npm install 오류 (code ERESOLVE)
예전에 작성했던 코드를 로컬로 다시 클론받아 코드를 수정하려고했다. 화면을 보기위해npm start를 해주었더니, script 오류가 났고🤦🏻♀️ 당황하지 않고 npm install을 해주었다. 그랬더니 이
velog.io
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
Unable to resolve dependency tree error when installing npm packages
When trying to install the npm packages using npm i command, I am getting the following exception: I have tried reinstalling the Node.js package and setting the proxy to off using: set HTTP_PROXY=...
stackoverflow.com