📜  ubuntu install nodejs - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:35:25.279000             🧑  作者: Mango

Ubuntu安装Node.js

在Ubuntu中安装Node.js非常简单。使用apt package manager,您可以轻松地从命令行安装Node.js。

以下是在Ubuntu上安装Node.js的步骤:

  1. 使用以下命令更新软件包列表:
sudo apt-get update
  1. 使用以下命令安装Node.js:
sudo apt-get install nodejs
  1. (可选)安装Node.js包管理器npm:
sudo apt-get install npm
  1. 验证Node.js是否正确安装:
node -v

上述命令应该返回您所安装的Node.js版本。

  1. 启动node shell:
node

这将打开node shell,您可以在其中运行JavaScript代码。

  1. 按Ctrl + C退出node shell。

现在,您已经成功在Ubuntu中安装了Node.js!