체인의정석

운영체제 확인 & 리눅스에서 nvm& node.js설치 본문

개발/docker & linux

운영체제 확인 & 리눅스에서 nvm& node.js설치

체인의정석 2023. 5. 19. 16:36
728x90
반응형

1. 먼저 원격 접속 한 곳의 운영체제 정보를 알고 싶을때는

hostnamectl

명령어를 사용하면 된다.

나는 리눅스로 확인되었다.

 

2. nvm 설치 (둘 중 하나 선택해서 실행)

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

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

.bash_profile에 반영

source .bash_profile

 

3. nvm으로 로컬에서 진행한 버전 체크 후 같은 node.js 설치 (npm은 자동으로 설치됨)

nvm install v18.15.0

 

728x90
반응형
Comments