1. 安装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
对于bash用户,可以运行:
source ~/.bashrc
对于zsh用户,可以运行:
source ~/.zshrc
2. 使用NVM安装Node.js:
nvm install node
或者,如果你想要安装特定版本(例如16.x),可以运行:
nvm install 16
3. 验证安装:
node -v
安装成功