ubuntu 系统安装 node 及 nvm node 版本管理工具
1. git clone 远程镜像
git clone https://gitee.com/mirrors/nvm
2. 安装 nvm
bash install.sh
3. 刷新配置,使配置在终端生效
// 方法 1 source /root/.bashrc // 方法 2 // 断开终端重新连接
4. 使用 nvm 安装 node
nvm install 19.10
5. 切换不同的 node 版本
nvm use v19.10