Server/Linux

[centos] Node 설치

밍글링글링 2022. 3. 28.
728x90

# Node 설치를 위한 레퍼지토리를 설정한다.

# 버전 확인은 https://rpm.nodesource.com 사이트에서 확인 가능

curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash -
 

# Node 설치

yum install -y nodejs

# 이후 오류가 발생한다면, 캐쉬 삭제 후에 다시 업데이트를 한다.

yum clean all 
sudo rm -rf /var/cache/yum/*

 

 

728x90

댓글