Written by
nodejs-style
on
on
[Node.js] Ubuntu 에 LTS버전의 Node.js 설치하기
[Node.js] Ubuntu 에 LTS버전의 Node.js 설치하기
Ubuntu를 설치하고 개발 환경을 세팅할때
단순히
sudo apt install nodejs
를 입력하면 대개 LTS(Long-Term Support) 버전보다 더 낮은 버전이 설치가 된다.
이를 해결하기 위해선 다음과정을 진행하면 된다.
Node.js 홈페이지에서 LTS 버전을 확인한다. 다음 명령어를 실행한다. (node.js 14를 기준으로 했다) curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -E - 현재 설치하고자 하는 버전에 맞게 위 명령어의 setup_ 이후를 수정해 주면 된다. node.js 설치 sudo apt install -y nodejs 버전을 확인해 보면 제대로 설치된 것을 알 수 있다. node -v
출처 : https://jjuon.tistory.com/3
from http://ssirioops.tistory.com/20 by ccl(A) rewrite - 2021-12-27 18:26:32