본문 바로가기

Dev. Back-End/Node.js

[우분투] Ubuntu 20.14에 Node, npm 설치하는 방법

 

 

 

 

1. CURL 설치

$ sudo apt install curl

 

 

2. PPA를 추가

$ curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -

 

3. NodeJs 설치

$ sudo apt install -y nodejs

 

 

이로써, nodejs와 npm 모두 설치되었습니다.

nodejs를 설치하면 npm도 자동으로 같이 설치됩니다.

 

 

 

 

 

 

 

Ref: https://soojae.tistory.com/25