当前位置: 首页 > 工具软件 > Deb.js > 使用案例 >

ubuntu安装node.js

曾苗宣
2023-12-01
sudo apt install curl
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs

如果你要安装12.x.x 的版本,只需要修改添加源地址中的数字即可,比如:

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

查看版本

nodejs -v
 类似资料: