188

I was recently going through the version of node in my ubuntu 16.04 when node -v command was used it shows me version 6.9.1 but when nodejs -v it shows 6.9.2 previously before using this commands npm update command was used.

Now what's these difference in node -v and nodejs -v? and how to update to the latest LTS version of node/nodejs?

ankur
  • 2,039
  • 2
  • 10
  • 12

17 Answers17

390

To update, you can install n

sudo npm install -g n

Then just :

sudo n latest

or a specific version

sudo n 8.9.0
wal
  • 17,409
  • 8
  • 74
  • 109
Camille Gerin-Roze
  • 4,271
  • 1
  • 11
  • 16
211

According to official docs to install node on Debian and Ubuntu based distributions:

node v12 (Old)

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs

node v14 (For new users: install this one):

curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs

node v15 (Current version):

curl -sL https://deb.nodesource.com/setup_15.x | sudo -E bash -
sudo apt-get install -y nodejs

Other older versions: Just replace the desired version number in the link above.

Optional: install build tools

To compile and install native packages

sudo apt-get install -y build-essential

To update node to the latest version just:

sudo apt update
sudo apt upgrade

To keep npm updated

sudo npm i -g npm

To find out other versions try npm info npm and in versions find your desired version and replace [version-tag] with that version tag in npm i -g npm@[version-tag]

And I also recommend trying yarn instead of npm

Developia
  • 3,928
  • 1
  • 28
  • 43
34

Using Node Version Manager (NVM):

Install it:

wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash

Test your installation:

close your current terminal, open a new terminal, and run:

command -v nvm

Use it to install as many versions as u like:

nvm install 8              # Install nodejs 8
nvm install --lts          # Install latest LTS (Long Term Support) version

List installed versions:

nvm ls

Use a specific version:

nvm use 8                  # Use this version on this shell

Set defaults:

nvm alias default 8        # Default to nodejs 8 on this shell
nvm alias default node     # always use latest available as default nodejs for all shells
Ahmad Abdelghany
  • 11,983
  • 5
  • 41
  • 36
  • 1
    Working solution – Gopal Joshi Sep 21 '18 at 20:26
  • I spent few hours trying to install Node 16 on my Ubuntu 14.04.6 using `curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -`. This Solution works fine for me. Thanks – Mher Jan 06 '22 at 03:20
19

Use n module from npm in order to upgrade node

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

To upgrade to latest version (and not current stable) version, you can use

sudo n latest

Undo :

sudo apt-get install --reinstall nodejs-legacy # fix /usr/bin/node sudo n rm 6.0.0 # replace number with version of Node that was installed sudo npm uninstall -g n

Mahak Choudhary
  • 1,286
  • 1
  • 16
  • 13
14

Use sudo apt-get install --only-upgrade nodejs to upgrade node (and only upgrade node) using the package manager.

The package name is nodejs, see https://stackoverflow.com/a/18130296/4578017 for details.

You can also use nvm to install and update node.

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash

Then restart the terminal, use nvm ls-remote to get latest version list of node, and use nvm install lts/* to install latest LTS version.

nvm is more recommended way to install or update node, even if you are not going to switch versions.

apaderno
  • 28,547
  • 16
  • 75
  • 90
DarkKnight
  • 5,651
  • 2
  • 24
  • 36
4

Difference: When I first installed node, it installed as 'nodejs'. When I upgraded it, it created 'node'. By executing node, we are actually executing nodejs. Node is just a reference to nodejs. From my experience, when I upgraded, it affected both the versions (as it is supposed to). When I do nodejs -v or node -v, I get the new version.

Upgrading: npm update is used to update the packages in the current directory. Check https://docs.npmjs.com/cli/update

To upgrade node version, based on the OS you are using, follow the commands here https://nodejs.org/en/download/package-manager/

Siva Kiran
  • 1,817
  • 1
  • 12
  • 8
4

Please refer nodejs official site for installation instructions at the following link

https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions

Anyway, please find the commands to install nodejs version 10 in ubuntu below.

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
Naresh
  • 115
  • 1
  • 6
3
sudo npm install npm@latest -g
Pang
  • 9,564
  • 146
  • 81
  • 122
Rubel Hossain
  • 2,503
  • 2
  • 22
  • 23
3

Try this:

Edit or create the file :nodesource.list

sudo gedit /etc/apt/sources.list.d/nodesource.list

Insert this text:

deb https://deb.nodesource.com/node_10.x bionic main

deb-src https://deb.nodesource.com/node_10.x bionic main

Run these commands:

curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -


sudo sh -c "echo deb https://deb.nodesource.com/node_10.x cosmic main /etc/apt/sources.list.d/nodesource.list"

sudo apt-get update

sudo apt-get install nodejs
Guilherme Garcia
  • 115
  • 1
  • 10
3

node and nodejs are two different packages in Ubuntu software, node is an up-to-date snap package, whereas nodejs is an older version of apt package

to update to the latest LTS version of node:

  1. Install NVM on Ubuntu 22.04|20.04|18.04 with the command:

wget https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh

bash install.sh

  1. After the installation, source the profile:

source ~/.bashrc

  1. Verify the NVM installation:

nvm -v

  1. Install Node.js 18 LTS on Ubuntu 22.04|20.04|18.04 as shown:

nvm install v18

  1. Install the latest version using the command:

nvm install node

  1. Once complete, verify the installation:

node -v

aisyahnnd
  • 81
  • 5
2

Run these commands:

sudo apt-get update
sudo apt-get install build-essential libssl-dev
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
source ~/.profile
nvm ls-remote
nvm install v9.10.1
nvm use v9.10.1
node -v
leopal
  • 4,711
  • 1
  • 25
  • 35
Anandhu Raj
  • 137
  • 1
  • 6
2

Update latest version Nodejs :

  1. sudo npm cache clean -f

  2. sudo npm install -g n

  3. sudo n stable

2

I am using Ubuntu 20.04.4 LTS and got the issue during upgrade node js. The current LTS version is 16.14.2 According to the NodeSource Node.js Binary Distributions document

Node.js v16.x:

curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -

sudo apt-get install -y nodejs

if you still get the issue you can also try the following:

curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
apt-get update
sudo npm cache clean -f
sudo apt-get install -y nodejs
Hasinur
  • 194
  • 1
  • 6
1

Node.js Current:

It's work for me..

Using Ubuntu

curl -fsSL https://deb.nodesource.com/setup_current.x | sudo -E bash -
sudo apt-get install -y nodejs

Using Debian, as root

curl -fsSL https://deb.nodesource.com/setup_current.x | bash -
apt-get install -y nodejs
Eahiya
  • 931
  • 1
  • 6
  • 12
1

I am also facing problem while going to install react app, so i found the solution,

npx create-react-app shodkk 

First install the npm latest version using

sudo npm install -g npm@8.4.1

So to install the node 16.x you need to go terminal and type

curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -

Doing this you install the node LTS that is 16.14.o at the time of writing this post.

Try this 2-3 times, also do the

sudo apt-get update

Then Now install the package using

sudo apt-get install -y nodejs

At last this helps you remove any unwanted package, that remains after updating that is depreciated and need not be there, So use autoremove command. sudo apt autoremove

So if like the post, Upvote and motivate me to write more, thanks, givingBack to the Community.

0

Use n module from npm in order to upgrade node sudo npm cache clean -f sudo npm install -g n sudo n stable To upgrade to latest version (and not current stable) version, you can use sudo n latest

To undo: sudo apt-get install --reinstall nodejs-legacy # fix /usr/bin/node sudo n rm 6.0.0 # replace number with version of Node that was installed sudo npm uninstall -g n

0

First run:

sudo apt-get install -y nodejs

If not working then just run:

nvm install v18
Tyler2P
  • 2,324
  • 26
  • 22
  • 31