본문 바로가기
리눅스

[Debian계열] apt로 nodejs 최신버전 설치

by LibRat 2021. 9. 8.
반응형

ROOT 기준

nodejs version 12

apt-get install -y curl

curl -sL https://deb.nodesource.com/setup_12.x | bash -

apt-get update

apt-get install -y nodejs

nodejs --version

 

 

nodejs version 11

apt-get install -y curl

curl -sL https://deb.nodesource.com/setup_11.x | bash -

apt-get update

apt-get install -y nodejs

nodejs --version

 

nodejs version 10

apt-get install -y curl

curl -sL https://deb.nodesource.com/setup_10.x | bash -

apt-get update

apt-get install -y nodejs

nodejs --version

 

nodejs version 9

apt-get install -y curl

curl -sL https://deb.nodesource.com/setup_9.x | bash -

apt-get update

apt-get install -y nodejs

nodejs --version

 

반응형