github官網(wǎng) https://github.com/creationix/nvm
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
next:
vim ~/.bashrc 寫入下面代碼
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
下一步即可安裝node
如 v6.11.0版本
nvm i 6.11.0
nvm常用指令:
nvm uninstall 6.11.0 // 移除 node 6.11.0
nvm use 6.11.0 // 使用 node 6.11.0
nvm ls // 查看目前已安裝的 node 及當(dāng)前所使用的 node
nvm ls-remote // 查看目前線上所能安裝的所有 node 版本
nvm alias default 6.11.0 // 使用 6.11.0 作為預(yù)設(shè)使用的 node 版本