[centos7] node 최신버전 설치..

아무리 설치해도 npm은 3.xxx, node는 6.xxx버전까지만 설치가 된다. 

아래와 같이 nvm을 설치하여 node를 인스톨하면 최신버전으로 설치 가능


아래 명령어로 nvm 설치

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash


nvm 설치후에는 재로그해야 적용

nvm install node # "node" is an alias for the latest version


특정버전을 설치하려면

nvm install 6.14.4 # or 10.10.0, 8.9.1, etc


'Programming > CentOS' 카테고리의 다른 글

[CentOS] tomcat 설치  (0) 2019.06.28
SSH Key CentOS 비밀번호 없이 로그인  (0) 2019.06.28
[CentOs] nginx 설치하기  (0) 2019.03.08
[CentOS] java 설치  (0) 2018.02.18