安装&更新
- 使用 cURL 安装脚本
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
- 使用 Wget 安装脚本
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
验证安装
command -v nvm
- 验证成功
- 验证失败
- 系统可能没有
.bash_profile file
设置命令的。只需创建一个touch ~/.bash_profile
并再次运行安装脚本,重新启动终端实例。 - 打开
.bash_profile
并添加以下代码行:
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
然后 source 一下 .bash_profile
source ~/.bash_profile
用法
- 安装最新版本
nvm install node
- 安装最新稳定版
nvm install stable
- 安装指定版本
nvm install x.x.x
- 删除指定版本
nvm uninstall x.x.x
- 查看远程版本
nvm ls-remote
- 查看安装版本
nvm ls
- 使用指定版本
nvm use x.x.x
- 设置Node默认版本
nvm alias default x.x.x
- 设置别名
nvm alias 别名 x.x.x
- 删除别名
nvm unbalias 别名 x.x.x
- 恢复Path
nvm deactivate
删除 nvm
- 卸载 nvm
nvm unload
- 手动卸载
$ rm -rf "$NVM_DIR"
编辑 ~/.bashrc
并删除以下行:
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[[ -r $NVM_DIR/bash_completion ]] && \. $NVM_DIR/bash_completion
Tips:
- 安装的第一个版本成为默认版本