24년 4월 기준
VM 에 curl 설치
커멘드 라인 툴 설치
sudo apt-get install -y curl
apt 패키지로 업데이트 + node 설치
아래 명령어 순서대로 입력
sudo apt update
sudo apt install nodejs
nodejs -v
sudo apt install npm
curl 로 nvm 설치
# installs NVM (Node Version Manager)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
# download and install Node.js
nvm install 20
# verifies the right Node.js version is in the environment
node -v # should print `v20.12.2`
# verifies the right NPM version is in the environment
npm -v # should print `10.5.0`
nvm install 20 시 설치 안될 때,
vim ~/.zshrc
.zshrc 파일에 아래 코드 복붙해주기 ( 경로 재설정 ? )
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
esc
+:wq
입력으로 저장하고 파일나오기터미널 종료 후 재실행 후
nvm install 20
재입력
버전 확인 해주면 끝!
node -v
, npm -v