몽땅뚝딱 개발자

[Vue.js] mac에서 node 버전 변경 / nvm 본문

Development/Vue.js

[Vue.js] mac에서 node 버전 변경 / nvm

레오나르도 다빈츠 2022. 2. 25. 10:11

 

맥북 재설정 중 정리해보는 node 버전 변경하는 방법 😎

 

1. node 설치
$ brew install node

2. node 버전을 변경하기 위한 nvm 설치
$ sudo curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash

3. nvm 설정하기
$ vi ~/.bash_profile // => terminal이 bash인 경우
$ vi ~/.zshrc // => terminal이 zsh인 경우

3-1. 아래 입력 후 ESC 누르고 :qw
export NVM_DIR="$HOME/.nvm" 
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && . "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && . "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion

4. 재시작하기
$ source ~/.bash_profile // => terminal이 bash인 경우
$ source ~/.zshrc // => terminal이 zsh인 경우

5. 설치 목록 확인
$ nvm ls

6. 버전을 지정하여 node 설치
$ nvm install 14.18.2

6-1. 에러해결
먄약 6번 명령어에서 'clang: error: no such file or directory: 'CXX=c++'라는
에러문이 출력된다면 아래 명령어 입력 후 6번 명령어 재입력
$ arch -x86_64 zsh

8. 설치확인
$ node -v // => v14.18.2

 

Comments