1、安装版本管理工具git
yum install git
//查看git版本
git --version
2、安装Node.js版本管理工具nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
//或
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
安装慢?
方法一:推荐开VPN,我切换到新加坡代理后连接上了
方法二:如果遇到下载不下来的问题,考虑是被墙了,此时需要修改hosts文件,添加github.com和raw.githubusercontent.com域名ip的静态映射。因为是静态的,所以不同时间他们的ip可能会不一样,那么只需要自己在安装时查询一下当前他们的具体ip,并修改host文件即可。
推荐ip查询网址 https://www.ipaddress.com/
3、验证安装
command -v nvm
4、重启命令行
5、查询Node.js版本
nvm list-remote
6、安装Node.js版本
nvm install v16.16.0
7、切换Node.js版本
nvm use v16.16.0
8、设置Node.js系统默认版本
nvm alias default 16.20.1