参考

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

 

Installation instructions

Node.js v19.x:
Using Ubuntu

curl -fsSL https://deb.nodesource.com/setup_19.x | sudo -E bash – &&\
sudo apt-get install -y nodejs

Using Debian, as root

curl -fsSL https://deb.nodesource.com/setup_19.x | bash – &&\
apt-get install -y nodejs

Node.js v18.x:
Using Ubuntu

curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash – &&\
sudo apt-get install -y nodejs

Using Debian, as root

curl -fsSL https://deb.nodesource.com/setup_18.x | bash – &&\
apt-get install -y nodejs

Node.js v16.x:
Using Ubuntu

curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash – &&\
sudo apt-get install -y nodejs

Using Debian, as root

curl -fsSL https://deb.nodesource.com/setup_16.x | bash – &&\
apt-get install -y nodejs

Node.js v14.x:
Using Ubuntu

curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash – &&\
sudo apt-get install -y nodejs

# Using Debian, as root
curl -fsSL https://deb.nodesource.com/setup_14.x | bash – &&\
apt-get install -y nodejs

Node.js LTS (v18.x):
Using Ubuntu

curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash – &&\
sudo apt-get install -y nodejs

Using Debian, as root

curl -fsSL https://deb.nodesource.com/setup_lts.x | bash – &&\
apt-get install -y nodejs

Node.js Current (v19.x):
Using Ubuntu

curl -fsSL https://deb.nodesource.com/setup_current.x | sudo -E bash – &&\
sudo apt-get install -y nodejs

Using Debian, as root

curl -fsSL https://deb.nodesource.com/setup_current.x | bash – &&\
apt-get install -y nodejs

 

版权声明:本文为zxddesk原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/zxdplay/p/17066184.html