ubuntu安装node.js
作者:互联网
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
标签:node,nodejs,sudo,apt,js,https,ubuntu,nodesource,curl 来源: https://blog.csdn.net/myWorld001/article/details/114413461