Ubuntu에서 Node.js 버전을 변경하기 위한 명령어는 다음과 같습니다:
1. NVM (Node Version Manager)을 사용하는 경우:
NVM 설치하기:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
source ~/.bashrc
Node.js 설치하기:
nvm install [version]
nvm install 14
nvm install v14.17.0
사용할 Node.js 버전 바꾸기:
nvm use [version]
nvm use 14
nvm use v14.17.0
2. APT 패키지 매니저를 사용하는 경우:
기존 Node.js 제거하기 (이미 설치되어 있다면):
sudo apt-get remove nodejs
NodeSource PPA 추가하고 Node.js 설치하기:
curl -sL https://deb.nodesource.com/setup_[version].x | sudo -E bash - sudo apt-get install -y nodejs
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - sudo apt-get install -y nodejs
중요한 사항: