当前位置: 首页 > 工具软件 > Bash-Oneliner > 使用案例 >

[one-liner] Install Node.js and NPM

那昊
2023-12-01

One-Liner series: Node.js and NPM

source: nodesource

Install on Ubuntu

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

Install on Debian, as root

curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs
 类似资料: