nvm 설치 방법에 대해 알아보겠습니다.





  • nvm이란?

 

NVM이란 Node Version Manger의 약자로 여러 버전의 nodejs를 쉽고 빠르게 설치하고 제거할 수 있습니다.




  • nvm 설치


- curl 


$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash


- wget


$wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash




  • 프로필 nvm 코드 추가 확인


(~/.bash_profile, ~/.zshrc, ~/.profile, 또는 ~/.bashrc) 


export NVM_DIR="$HOME/.nvm"

[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm

[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion


쉘 재시작 혹은 프로필 갱신 

$ source ~/.bash_profile




  • 설치 확인 및 nodejs 설치


- 설치 확인

$ nvm --version


- nodejs 설치

$ nvm install node (최신 버전 설치)


$ nvm install 10.16.3 (특정 버전 설치)


 


'nodejs' 카테고리의 다른 글

npm init, npm 사용법, package.json  (0) 2019.10.22

+ Recent posts