nvm安装可切换不同版本nodejs
NVM (Node Version Manager) 是一个用于管理和切换不同版本的 Node.js 的工具。以下是使用 NVM 安装和切换 Node.js 版本的步骤:
- 安装 NVM:
在终端中运行以下命令来安装 NVM(根据不同操作系统的安装方法可能有所不同):
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
# 或者使用 wget:
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
- 安装 Node.js 特定版本:
使用 NVM 安装 Node.js 的特定版本,例如安装 Node.js 版本 14.17.0:
nvm install 14.17.0
- 切换到特定版本的 Node.js:
nvm use 14.17.0
- 确认当前使用的 Node.js 版本:
node -v
- 如果需要,可以列出所有已安装的 Node.js 版本:
nvm ls
- 切换到系统默认的 Node.js 版本:
nvm use system
- 切换回 Node.js 最新版本:
nvm use node
以上步骤可以帮助你使用 NVM 来安装和管理不同版本的 Node.js。
评论已关闭