Cute Bow Tie Hearts Blinking Pink Pointer

에러 해결

[nodejs] Error: Requires Babel "^7.0.0-0", but was loaded with "6.26.3". If you are sure you have a compatible version of @babel/core 에러 해결하기

청포도 에이드 2022. 11. 29. 14:13
728x90

레파지토리에서 clone받아온 파일의 모듈을 깔고, 실행을 해야하는데

 

npm install 부터 실패했다.......

 

 

뭔 짓을 해도 아래의 에러가 계속해서 발생하였다. 미치는 줄 알았다.

 

Error: Requires Babel "^7.0.0-0", but was loaded with "6.26.3". If you are sure you have a compatible version of @babel/core

 

babel도 지워보고 모듈을 깔았다 지웠다 반복했음에도 해결되지 않았다 --;

 

별의 별 짓을 다 해보면서 해결하게 됐는데,

 

안됐던 이유는 package.json에 다운로드한 모듈의 이름은 @babel/cli인데

 

열심히 npm uninstall babel-cli 를 하고 있었따 ^^;

 

 

본인이 설치한 라이브러리 이름이 babel-cli인지 @babel/cli 인지 잘 확인하자..

 

 

 

npm uninstall @babel/cli
npm uninstall @babel/core

npm install @babel/cli
npm install @babel/core

npm install babel-core@7.0.0-bridge.0 --save-dev

yarn 쓰시는 분들은 yarn remove로 지우면 된다. 암튼 이렇게 하면 해결 됨 끝!

728x90