连接服务器
ssh root@ip
通过以下命令安装NVM(有时在gitBash上怎么也安装不了,换个远程方式试试)
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
//或者
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
查看是否安装好nvm
ll .nvm/
使环境变量生效
//查看bash_profile或者bashrc是否有NVM环境变量
ll .bash_profile
vim .bash_profile
vim .bashrc
//使环境变量生效
source .bashrc
使用nvm安装node
//如果一直安装不成功,建议切换低版本node
nvm install node | nvm install 版本号
设置node默认版本
nvm alias default v11.3.0