ubuntu 16.04安裝最新版穩定版node和npm

herevra發表於2017-11-28

全部命令基於root登入,其他使用者命令前加上sudo即可
1.apt-get update
2.先在系統上安裝好nodejs和npm
apt-get install nodejs-legacy
apt-get install npm
3.升級npm為最新版本
npm install npm@latest -g
4.安裝用於安裝nodejs的模組n
npm install -g n
5.通過n模組安裝指定的nodejs
n lts
6.檢視版本
node -v
npm -v

相關文章