如何安装Node.js?

创建于 2024年1月24日修改于 2024年5月5日
JavaScriptWindowsNode.jsLinuxmacOS

JavaScript基础


macOS

使用 Homebrew

运行以下命令:

brew install node

使用 NVM(Node Version Manager):

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 install node

Linux(基于Ubuntu/Debian):

使用包管理器:

sudo apt update
sudo apt install nodejs npm

使用NVM(Node Version Manager):

与 macOS 部分相同。

Windows

使用 Node.js 安装程序:

使用 Chocolatey(Windows的包管理器):

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'))
choco install nodejs

安装完成后,通过在终端或命令提示符中运行以下命令来验证 Node.js 是否已安装:

node -v
npm -v