MAC终端安装指定版本node
终端上运行
$ /usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
$ brew install nvm
安装完成之后打开shell的配置文件
$ cd ~
$ vim .bash_profile
然后 按 i 进入编辑模式
在文件里添加以下命令
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
然后 按 :WQ 退出
然后重新source
$ source .bash_profile
$ nvm ls-remote 查看 所有的node可用版本
$ nvm install xxx 下载你想要的版本
$ nvm use xxx 使用指定版本的node
$ nvm alias default xxx 每次启动终端都使用该版本的node