在 Linux 中安装 Node 最新版本

在 Linux 中安装 Node 最新版本

我是 Linux 新手,想使用以下命令安装节点:

sudo apt-get install curl

curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

sudo apt-get install nodejs

并且 angular 8 需要node 12.x

我删除了节点sudo apt-get purge --auto-remove nodejs并运行下面的命令,但它安装了错误的版本

sudo apt-get install curl curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - sudo apt-get install nodejs

答案1

  1. curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

  2. sudo apt install nodejs

  3. 检查:$ node --version 输出:v10.16.3

  4. 检查:$ npm --version 输出:6.9.0

答案2

尝试使用n. 以任何方式安装节点后,例如。如下所述

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs

你应该有npm可用的。安装n

npm install -g n

并选择正确的版本

  • n lsr列出可用的版本
  • n latest使用最新的
  • n 12.0.0使用 12.0

答案3

尝试以下命令

须藤 lts

如果你想安装更新版本然后运行命令

安装 n16.15.1

这对我来说很好。

相关内容