nugawiki

./categories/os

Ubuntu Node.js nvm 설치

업데이트 2026-07-21 조회수

Ubuntu Node.js (nvm)

wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
# 또는
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
# 터미널 재시작 후
nvm

nvm ls-remote          # 설치 가능 버전 (LTS)
nvm install 12.13.0
nvm ls                 # 설치·현재(->)
nvm use 12.18.1

./comments