在CentOS Linux系统上安装NVM(Node version Manager
安装NVM,运行Install Script
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.7/install.sh | bash
可以在GitHub上搜索到nvm仓库。
安装完成后会出现 Close and reopen your terminal to start using nvm 类似的信息,可以关掉终端再打开,或者运行下面的命令后即可使用nvm:
source ~/.bashrc
安装验证
nvm --version
如果输出 0.31.7 那就成功了。