1.安装 nvm
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash
2.查看版本号
nvm ls-remote
3.下载所需要的 node 版本
nvm install v6.9.0
4.查看当前已安装版本
nvm ls
5.使用 nvm 切换 node 版本
nvm use v6.9.0
6.卸载某个 node 版本
nvm uninstall v6.3.0