Ubuntu 安装指定版本的 Node.js 和 npm

1
2
3
4
5
6
7
8
apt update
apt upgrade
apt install curl
# 打开 nvm 官网,找到最新的下载链接
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
source ~/.bashrc
# 安装18.12.1版本的 Node.js,默认搭配8.19.2的npm
nvm install 18.12.1