ubuntu中更新安装node

sudo apt update
#下载Ubuntu下的nodejs
sudo apt install nodejs
#安装新版的node 和npm
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs

你可能感兴趣的:(ubuntu,linux,服务器)