Install latest nodejs version in ubuntu 14.04

前端 未结 13 1265
北恋
北恋 2020-12-12 13:50

This is the way I installed nodejs in ubuntu 14.04 LTS:

sudo add-apt-repository ppa:chris-lea/node.js

sudo apt-get install nodejs

When I c

13条回答
  •  没有蜡笔的小新
    2020-12-12 14:07

    On Ubuntu 14.04.5 LTSthe easier way is

    1 Install npm:

    sudo apt-get install npm

    1. Install n

    sudo npm install n -g

    1. Get latest version of node

    sudo n latest

    If you prefer to install a specific version of `node you can

    2.1 List available node versions

    n ls

    2.2 and the install a specific version

    sudo n 4.5.0

提交回复
热议问题