<인턴생활>/[리눅스]
[CentOS] CentOS7 nodeJs 설치
Hading
2019. 4. 11. 10:39
728x90
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
728x90