如何安装Node.js?
创建于 2024年1月24日修改于 2024年5月5日
macOS
使用 Homebrew
运行以下命令:
brew install node
使用 NVM(Node Version Manager):
- 通过运行以下命令安装 NVM:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
# 或者使用 wget
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
- 重启终端并使用 NVM 安装 Node.js:
nvm install node
Linux(基于Ubuntu/Debian):
使用包管理器:
sudo apt update
sudo apt install nodejs npm
使用NVM(Node Version Manager):
与 macOS 部分相同。
Windows
使用 Node.js 安装程序:
- 从官方 Node.js 网站下载 Windows 版本安装程序:Node.js 下载页
- 运行安装程序并按照屏幕上的说明操作。
使用 Chocolatey(Windows的包管理器):
- 以管理员身份打开 PowerShell。
- [可选] 运行以下命令安装Chocolatey(如果尚未安装):
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
- 使用 Chocolatey 安装 Node.js:
choco install nodejs
安装完成后,通过在终端或命令提示符中运行以下命令来验证 Node.js 是否已安装:
node -v
npm -v