Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 타입스크립트
- React Native
- 폰트적용하기
- 티스토리꾸미기
- 리액트
- const 단언문
- 레이아웃쪼개기
- 커스텀
- typescript
- react
- reactjs
- utilty type
- vue.js
- 반복줄이기
- returnType
- 공통컴포넌트
- 타입좁히기
- JS console
- NonNullable
- Chart.js
- TSDoc
- 성능최적화
- CSS
- 2022
- 제네릭
- click and drag
- 개발콘텐츠
- javascript
- 누구나 자료구조와 알고리즘
- React.js
Archives
- Today
- Total
몽땅뚝딱 개발자
[Vue.js] mac에서 node 버전 변경 / nvm 본문
맥북 재설정 중 정리해보는 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
'Development > Vue.js' 카테고리의 다른 글
[Vue.js] Vue3의 Composition API (0) | 2022.04.13 |
---|---|
모킹 모듈(mocking module) 사용하기 / axios-mock-adapter-path-params (0) | 2022.03.25 |
[Vue.js] filter 사용하기 (0) | 2022.02.20 |
[Vue.js] plugin으로 toast 만들기 (0) | 2022.02.19 |
[Vue.js/라이브러리] Vue2Editor (0) | 2022.02.15 |
Comments