본문 바로가기
💻CODING/react. vue

[react] Refusing to install package with name "react-redux" under a package 오류 해결

by 코딩하는 갓디노 2021. 7. 11.

react redux 오류

 

react에서 npm install redux react-redux로 리덕스를 설치하는 도중 아래의 오류가 발생했습니다. 

 

오류 메시지

npm ERR! code ENOSELF
npm ERR! Refusing to install package with name "react-redux" under a package
npm ERR! also called "react-redux". Did you name your project the same
npm ERR! as the dependency you're installing?
npm ERR!
npm ERR! For more information, see:
npm ERR!     <https://docs.npmjs.com/cli/install#limitations-of-npms-install-algorithm>

 

오류 해결

  • 문제는 프로젝트 이름을 제가 react-redux 라고 설정해서, package.json 파일내의 name이 redux-redux 되어있었습니다.
  • 그래서 package.json 파일 안의 name을 다른 것으로 수정해주었습니다. -> 오류 해결 완료
//before
"name": "react-redux",
//after
"name": "react-redux-practice",

 

반응형

댓글