[NodeJS] Ubuntu 22.04 LTS 및 NVM 설치


[NodeJS] Ubuntu 22.04 LTS 및 NVM 설치

LTS 설치 # 기본 저장소가 아닌 NVM 또는 NodeSource를 통해서 설치하려는 경우 sudo apt install curl gnupg2 gnupg -y OR # Ubuntu 저장소에 있는 기본 Node 설치 sudo apt install nodejs 버젼별 설치 curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - curl -fsSL https://deb.nodesource.com/setup_17.x | sudo -E bash - curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash - NVM 설치 curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash source ~/.bashrc # 노드 버젼 나열 nvm list-remote # 설치 방법 nvm install ...


#lts #node #nodejs #nvm #ubuntu #설치

원문링크 : [NodeJS] Ubuntu 22.04 LTS 및 NVM 설치