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