Mac中nvm的安装与卸载

Mac中nvm的安装与卸载

一、运行命令

  1. 使用 cURL 安装脚本
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash
  1. 使用 Wget 安装脚本
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash

·第一处提示在~/.bashrc, ~/.bash_profile, ~/.zshrc, ~/.profile都没有找到所需要的配置信息。
·第二处提示我们可以将export NVM_DIR...这两句句命令添加到恰当的文件中,也就是上面列出的四个文件中的一个。
·第三处的意思就是如果现在需要使用nvm,可以直接执行如下命令,然后就可以使用nvm了(这种方式在重新启动Terminal以后无法继续使用nvm)。

二、经过第一步的分析,需要将以上代码添加至~/.bash_profile或者~/.profile文件中

为了能够在重启(在Mac上则为重启Terminal)以后还能继续使用NVM,我们可以把这段配置信息添加到~/.bash_profile或者~/.profile文件中,经过实践测试添加到~/.bashrc~/.zshrc文件中均无法在重启Terminal后使用NVM。

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
vim .bash_profile
# 将export NVM_DIR ... 粘贴到文件中
# ESC -> 键入":" -> 键入"wq" -> 回车保存
# 让配置文件里面生效
source .bash_profile

如果碰到在 “source .bash_profile”后,每次重新打开Terminal依然报错”command not found: nvm”,需要在.zshrc文件中底部加入source .bash_profile,然后保存退出,重启Terminal即可。

你可能感兴趣的:(Mac中nvm的安装与卸载)