前言: 咱們日常經常使用的安裝軟件有三種方式, yum(apt-get等)命令, rpm(deb等)包, 源碼編譯, 而最便捷的即是yum式的命令式安裝, 下面, 咱們就以最便捷的方式來安裝它node
curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
其餘版本, 如:npm
curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -
sudo yum install -y nodejs
node --version npm --version
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
其餘版本, 如:ubuntu
curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -
sudo apt-get install -y nodejs
node --version npm --version
請到網站去找centos
https://rpm.nodesource.com
note: 記得用
root
權限bash