![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FrsK9B%2FbtrGjbHKjtj%2FKlRDwXzrXzIhLmYvHPqcgk%2Fimg.png)
[Node.js] ubuntu에 Node.js 설치하는 방법
·
Programming/Node.js
이 글에서는 ubuntu 18.04에 Node.js를 설치하는 방법을 서술한다. 환경 ubuntu: 18.04 node.js: v16.15.0 (설치할 버전) Node.js 설치 1. curl 설치 설치 되어있다면 건너뛰어도된다. $ sudo apt-get install curl 2. PPA를 추가 $ curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash - 3. node.js 설치 $ sudo apt-get install -y nodejs 4. 설치가 끝난후 버전 확인 $ node -v 위 사진처럼 노드 버전에 대한 정보가 나오면 설치는 성공적으로 완료 되었다.