更新ubuntu软件源
sudo apt-get updatesudo apt-get install -y python-software-properties software-properties-commonsudo add-apt-repository ppa:chris-lea/node.jssudo apt-get update 复制代码
安装nodejs
sudo apt-get install nodejssudo apt install nodejs-legacysudo apt install npm 复制代码
更新npm的包镜像源,方便快速下载
sudo npm config set registry https://registry.npm.taobao.orgsudo npm config list 复制代码
全局安装n管理器(用于管理nodejs版本)
sudo npm install n -g 复制代码
安装最新的nodejs(stable版本)
sudo n stablesudo node -v 复制代码