-
[nodeJS] 우분투에서 apt를 사용하여 최신버전 nodeJS 설치Javascript & TypeScript 2017. 12. 23. 15:05반응형
우분투에서 바로 apt-get 명령어로 nodeJS 설치하면 최신버전이 아닌 v4.x 버전으로 설치된다.
(Ubuntu Server 16.04 LTS 기준)
최신버전으로 설치하려면 아래 명령어로 실행해주면 된다.# Using Ubuntu curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - sudo apt-get install -y nodejs # Using Debian, as root curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - apt-get install -y nodejs
최신버전 리스트는 https://github.com/nodesource/distributions#installation-instructions 에서 확인가능하다.curl이 없으면 아래 명령어로 설치 하면 된다.sudo apt-get install curl설치 시도시 아래와 같은 오류가 나올 수 있다.
The repository 'cdrom://Ubuntu-Server 16.04.3 LTS _Xenial Xerus_ - Release amd64 (20170801) xenial Release' does not have a Release file
이럴 경우 /etc/apt/sources.list 파일에서 아래 내용을 찾아 주석처리하면 된다. 주석을 앞에 # 를 쓰면 된다.
deb cdrom:[Ubuntu-Server 16.04 LTS _Xenial Xerus_ - Release amd64 (20160420.3)]/ xenial main restricted
출처 : GitHub - nodesource/distributions: NodeSource Node.js Binary Distributions
반응형'Javascript & TypeScript' 카테고리의 다른 글
[Javascript] React 웹 앱 Firebase에 호스팅하기 (0) 2021.02.04 [Javascript] blob으로 저장된 미디어파일 재생처리 (0) 2021.02.02 [Javascript] 브라우저의 indexedDB 및 WebSQL을 손쉽게 사용할 수 있는 localForage 라이브러리 (0) 2021.02.01 [Javascript] 객체를 손쉽게 깊은 복사(Deep copy) 하는 라이브러리 fast-copy 소개 (1) 2021.01.26 [VueJS] Gridsome을 이용한 정적페이지 생성 (0) 2020.08.16