Saturday, January 2, 2016

Ubuntu Node.js 설치

http://blog.igk.me/2014/05/ubuntu-nodejs-npm.html

요약:
$ sudo apt-get install python-software-properties curl
$ sudo add-apt-repository ppa:chris-lea/node.js
$ sudo apt-get update
$ sudo apt-get install nodejs
$ curl https://www.npmjs.org/install.sh | sudo sh


여기부터 전체 내용 시작.
이 내용은 Ubuntu 14.04 LTS 64bit 기준으로 확인하였다.

요즘 Node.js 관련해서 뭔가 하려면 NPM 버전이 높아야 하는데 기본 저장소 패키지는 버전이 낮음. 따라서 모두 최신버전으로 설치하기 위한 작업 과정이다.
(다음을 진행하기 전에 add-apt-repository 명령을 제공하는 python-software-properties가 필요하다. 마지막 명령을 위해서는 curl도 설치해야 한다. 패키지가 설치되어 있지 않다면 먼저 sudo apt-get install python-software-properties curl 명령을 실행하여 설치하여야 한다.)

1. Node.js 최신 릴리즈 PPA 추가 및 저장소 정보 업데이트
명령 실행: sudo add-apt-repository ppa:chris-lea/node.js && sudo apt-get update

2. Node.js 패키지 설치
명령 실행: sudo apt-get install nodejs

3. NPM 설치
명령 실행: curl https://www.npmjs.org/install.sh | sudo sh

끝.

여기다가 나는 node로 실행하기 위해서 다음을 추가로 설치했다.
sudo apt-get install nodejs-legacy

No comments:

Post a Comment