使用yum或者apt-get等安裝最新版nodejs和npm

前言: 咱們日常經常使用的安裝軟件有三種方式, yum(apt-get等)命令, rpm(deb等)包, 源碼編譯, 而最便捷的即是yum式的命令式安裝, 下面, 咱們就以最便捷的方式來安裝它node

centos

1. 獲取最新版的 bash

curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -

其餘版本, 如:npm

curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -

2. 執行安裝

sudo yum install -y nodejs

3. 查看版本

node --version
npm --version

ubuntu

1. 獲取最新版的 bash

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -

其餘版本, 如:ubuntu

curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -

2. 執行安裝

sudo apt-get install -y nodejs

3. 查看版本

node --version
npm --version

更多版本

請到網站去找centos

https://rpm.nodesource.com

note: 記得用 root 權限bash

相關文章
相關標籤/搜索