欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ubuntu16.04安装最新版nodejs(2018)

程序员文章站 2022-07-13 13:22:20
...

刚买了阿里云的服务器ECS,特意拿来学习node环境部署的。 
首先通过shell连接到服务器。使用超级管理员权限执行命令工具。 
1,执行检查可更新的软件:sudo apt-get update 
2,先用普通的apt工具安装低版本的node,然后再升级最新。

sudo apt-get install nodejs
sudo apt install nodejs-legacy
sudo apt install npm

3,更换淘宝的镜像,这个是必须的,用过的node的人都知道。

sudo npm config set registry https://registry.npm.taobao.org
  •  

查看下配置是否生效:sudo npm config list 
Ubuntu16.04安装最新版nodejs(2018) 
4,安装更新版本的工具N,执行:sudo npm install n -g 
5,跟新node版本,执行:sudo n stable 
Ubuntu16.04安装最新版nodejs(2018)

好的大功告成!!!

重启电脑