几行命令实现在ubuntu上安装、升级node.js

安装

curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install nodejs

升级

sudo npm cache clean -f
sudo npm install -g n
sudo n stable


你可能感兴趣的:(几行命令实现在ubuntu上安装、升级node.js)