How can I install Node.js version 18 on Ubuntu 22.04? – Node.js

by
Ali Hasan
node.js npm

Quick Fix: Use Node Version Manager (nvm) to easily install and manage multiple Node.js versions on your system.

The Problem:

I want to install Node.js version 18 on my Ubuntu 22.04 system, but I am consistently getting version 12.22.9 installed instead. I need Node.js version 14 or higher to build an app with React. How can I resolve this issue and successfully install Node.js version 18?

The Solutions:

Solution 1: Using Node Version Manager (NVM)

To install Node version 18 on Ubuntu 22.04 using Node Version Manager (NVM):

  1. Install NVM:

    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
    
  2. Install Node version 18 using NVM:

    nvm install 18
    
  3. Switch to Node version 18:

    nvm use 18
    
  4. Verify Node version:

    node --version
    

    This should output "v18..".

Solution 3: Using the NodeSource Repository

Step 1: Update and Upgrade System

sudo apt update
sudo apt upgrade

Step 2: Install Curl

sudo apt install -y curl

Step 3: Import NodeSource Repository

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

Step 4: Install Node.js

sudo apt install -y nodejs

Step 5: Verify Node.js Version

node --version

Solution 4: Remove Previous Node.js Versions

To avoid conflicts with existing versions, it’s advisable to purge the old Node.js installation and remove any associated packages:

sudo apt purge nodejs
sudo apt autoremove

After this cleanup, proceed with installing the desired version of Node.js:

sudo apt install nodejs

This approach should ensure that Node.js version 18 is successfully installed on Ubuntu 22.04.

Q&A

How to install node js version 18 on ubuntu 22.04 ?

Use Node Version Manager to install the desired Node version.

How to install node js version 18 on Debian and Ubuntu based distributions?

Follow step 1, 2 & 3 method to install nodejs on your system

How to install node.js 18 on Ubuntu 22.04

Remove the old nodejs version and then install it by following these steps.

Video Explanation:

The following video, titled "How To Install Node.js on Ubuntu 22.04 LTS | Install NodeJS and ...", provides additional insights and in-depth exploration related to the topics discussed in this post.

Play video

How To Install Node.js on Ubuntu 22.04 LTS | Install NodeJS and npm | For React, Web Development · Comments18.