리눅스
[CentOS] CentOS7 nodeJs 설치
린기린기린
2017. 3. 6. 15:25
반응형
CentOs에서 NodeJs 최신버전을 설치하고 싶다면??
1. yum epel 저장소 확인 및 추가
* epel = Extra Packages for Enterprise Linux : 엔터프라이즈 리눅스를 위한 추가 패키지
$ yum repolist
epel저장소가 없다면 아래 명령어로 저장소 추가!!
# yum install epel-release
2. nodejs, npm 설치
# yum install npm nodejs
3. 버전 확인
$ node -v
and
$ npm -v
끝.
반응형