Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Docker
- github
- Git
- 편스토랑 우승상품
- ubuntu
- 프로그래머스 파이썬
- 데이콘
- dacon
- 코로나19
- 캐치카페
- SW Expert Academy
- 우분투
- ChatGPT
- hackerrank
- PYTHON
- gs25
- 프로그래머스
- Baekjoon
- Real or Not? NLP with Disaster Tweets
- 백준
- 편스토랑
- 금융문자분석경진대회
- 맥북
- 파이썬
- 더현대서울 맛집
- 자연어처리
- leetcode
- Kaggle
- AI 경진대회
- programmers
Archives
- Today
- Total
솜씨좋은장씨
[React] error c8@7.7.3: The engine "node" is incompatible with this module. Expected version ">=10.12.0". Got "10.10.0" 해결방법 ( feat. nvm ) 본문
Programming/React
[React] error c8@7.7.3: The engine "node" is incompatible with this module. Expected version ">=10.12.0". Got "10.10.0" 해결방법 ( feat. nvm )
솜씨좋은장씨 2021. 7. 1. 22:44728x90
반응형
nvm을 활용해서 Node.js를 설치하고 create-react-app을 활용하여 리액트 앱을 생성한 뒤에
packge.json을 수정하고 yarn을 통해 라이브러리를 설치하려고 하였는데
[2/4] 🚚 Fetching packages...
error c8@7.7.3: The engine "node" is incompatible with this module. Expected version ">=10.12.0". Got "10.10.0"
error Found incompatible module.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
위와 같은 오류가 발생했습니다.
위의 오류는 Node.js의 버전이 달라서 나는 오류입니다.
저는 nvm을 설치했기때문에 nvm을 활용해서 Node.js의 버전을 바꿔보기로 했습니다.
먼저 위의 오류에서 10.12.0 이상 버전의 Node.js가 필요하다고 했으니 10.12.0 버전을 nvm을 활용하여 설치하였습니다.
$ nvm install 10.12.0
그 다음 10.12.0 버전을 사용하도록 아래의 명령어로 변경해주면 됩니다.
$ nvm use 10.12.0
그런 다음 다시 설치를 해보면!
[4/4] 🔨 Building fresh packages...
success Saved lockfile.
✨ Done in 68.38s.
제대로 잘 설치가 되는 것을 볼 수 있습니다.
읽어주셔서 감사합니다.
'Programming > React' 카테고리의 다른 글
[React] yarn start 시 babel-loader 오류 해결 방법 (0) | 2021.07.02 |
---|---|
[React] yarn과 create-react-app 설치하고 리액트 앱 생성, 실행하는 방법 (0) | 2021.07.01 |
macOS에 nvm설치하는 방법! ( feat. brew ) (8) | 2021.07.01 |
Comments