无法更新 Apt 以获取 npm 的最新版本

无法更新 Apt 以获取 npm 的最新版本

我正在尝试安装较新版本的 npm。在Ubuntu 19.10 Eon 软件包站点它列出的版本为 5.8.0,这是完美的,但是当我进入命令行并输入“apt show npm”时,它列出的版本为 3.5.2

我尝试过“sudo apt update”,没有错误,但之后 apt 仍然列出的版本为 3.5.2

我如何更新存储库以便 apt 将版本列为 5.8.0?

谢谢

答案1

您可以从这里安装较新的版本:

https://github.com/nodesource/distributions/blob/master/README.md

版本示例:Node.js v13.x:

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

相关内容