安装git
终端输入git,会安装命令行工具,在后面弹窗中点击安装即可。
> git
后面会提示如下
xcode-select: note: no developer tools were found at '/Applications/Xcode.app', requesting install. Choose an option in the dialog to download the command line developer tools.
安装nvm
> cd ~
> git clone https://github.com/nvm-sh/nvm.git .nvm
> cd ~/.nvm
> git checkout v0.39.1
如果shell是zsh,~
目录下是否存在.zshrc
文件,没有的话通过touch .zshrc
,要确保是在~目录下创建的。
> cd ~
> touch .zshrc
> vim .zshrc
编辑.zshrc文件,添加以下代码,保存并退出。
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
完成以上操作后终端执行以下命令。
> cd ~
> source .zshrc
新打开一个终端窗口,执行nvm -v
命令,即可查看当前安装的nvm版本号。
补充:
- 以上安装操作是基于shell是zsh的情况下。自macOS 10.15以来,默认shell是zsh,如果不是这个的话,将上行添加到~/.bashrc或~/.profile文件中。
- 安装nvm的其他方式,可以参照nvm 的GitHub文档说明。