1. 程式人生 > >【Ubuntu】在Ubuntu16上安裝nodejs以及npm

【Ubuntu】在Ubuntu16上安裝nodejs以及npm

轉載:

步驟:

1、先在系統上安裝好nodejs和npm

sudo    apt-get    install    nodejs-legacy

sudo    apt-get    install    npm

2、安裝用於安裝nodejs的模組n

sudo    npm    install    -g    n

3、通過n模組安裝指定的nodejs

sudo    n    latest

sudo    n    stable

sudo    n    lts

4、升級npm為最新版本

sudo    npm    install    [email protected]

    -g

5、檢視版本

sudo    node    -v

sudo    npm    -v

6、Npm更換為淘寶源  

6.1 得到原本的映象地址

npm get registry 

> https://registry.npmjs.org/

設成淘寶的

npm config set registry http://registry.npm.taobao.org/

6.2 換成原來的

npm config set registry https://registry.npmjs.org/