NVM(Node Version Manager)를 통한 nodejs 설치에 대해 알아보자.
NVM을 통하여 기존 설치된 node.js 버전을 변경하는 동작도 가능하다.
다음 명령을 통해 NVM을 설치한다.
- $ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
설치된 NVM 버전은 다음 명령을 통해 확인 가능하다.
- $ nvm --version
- 0.32.1
NVM 설치가 잘 안되면 아래 명령으로 개발에 필요한 기본 패키지를 설치한다.
- $ apt-get install build-essential libssl-dev
NVM 설치가 끝나면 다음과 같이 원하는 버전의 nodejs를 설치한다.
- $ nvm install v12.18.2
$ nvm install v12.18.2 Downloading and installing node v12.18.2... Downloading https://nodejs.org/dist/v12.18.2/node-v12.18.2-linux-x64.tar.xz... ######################################################################## 100.0% Computing checksum with sha256sum Checksums matched! Now using node v12.18.2 (npm v6.14.5) |
NVM을 통해 nodejs가 설치되면서 npm도 같이 설치가 된다.
- $ npm -v
- 3.10.8
현재 설치된 nodejs 버전은 다음 명령으로 확인가능하다.
- $ nvm ls
$ nvm ls v10.17.0 -> v12.18.2 default -> v10.17.0 node -> stable (-> v12.18.2) (default) stable -> 12.18 (-> v12.18.2) (default) iojs -> N/A (default) lts/* -> lts/erbium (-> v12.18.2) lts/argon -> v4.9.1 (-> N/A) lts/boron -> v6.17.1 (-> N/A) lts/carbon -> v8.17.0 (-> N/A) lts/dubnium -> v10.21.0 (-> N/A) lts/erbium -> v12.18.2
|
현재 사용중인 nodejs 버전은 다음 명령으로 확인가능하다.
- $ nvm current
- v12.18.2
- $ nvm alias default v12.18.2
- default -> v12.18.2
'Node.js' 카테고리의 다른 글
[Node.js][Winston] Custom Log Format (0) | 2017.02.03 |
---|---|
[Node.js] node 실행시 "/usr/bin/env: node: No such file or directory" 에러가 발생하는 경우 (0) | 2016.12.25 |
[BOWER] Proxy 설정 (0) | 2016.12.16 |
[NPM] Proxy 설정 (1) | 2016.12.16 |
[Node.js] windows 에서 npm 명령 수행시 node-gyp 에러 (0) | 2016.02.29 |