1、安装brew:curl -LsSf http://github.com/mxcl/homebrew/tarball/master | sudo tar xvz -C/usr/local --strip1
2、brew update
3、brew install nvm,在shell的配置文件(~/.bashrc, ~/.profile, or ~/.zshrc)中添加如下内容:
# For NVM
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
4、查看node的所有版本:nvm ls-remote
5、选择版本安装:nvm install 版本号
6、查看已经安装的版本:nvm ls
7、使用哪个版本:nvm use 版本号