ubuntu从NodeSource repository安装nodejs - xd21303/Notebook GitHub Wiki

https://mirrors.tuna.tsinghua.edu.cn/help/nodesource/

https://linuxize.com/post/how-to-install-node-js-on-ubuntu-18.04/#install-node-js-from-the-nodesource-repository

Nodesource 为 debian, ubuntu, fedora, RHEL 等发行版提供预编译的 nodejs 和 npm 等软件包。

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

替换清华的Nodesource镜像。

编辑 /etc/apt/sources.list.d/nodesource.list,把 https://deb.nodesource.com/node/ 替换为 https://mirrors.tuna.tsinghua.edu.cn/nodesource/deb/ 即可。

如果是 https://deb.nodesource.com/node_10.x/ ,则改为 https://mirrors.tuna.tsinghua.edu.cn/nodesource/deb_10.x/

然后

sudo apt update
sudo apt install nodejs

不要直接 apt install npm,版本会比较旧,会出问题。