github官网 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 及当前所使用的 node
nvm ls-remote // 查看目前线上所能安装的所有 node 版本
nvm alias default 6.11.0 // 使用 6.11.0 作为预设使用的 node 版本