Dev

Install Node.js 18 on Ubuntu / Debian / Linux Mint

Welcome to our guide on how to install Node.js 18 LTS on Ubuntu / Debian / Linux Mint server or Desktop system. This guide will cover installation of Node.js 18 on Ubuntu / Debian / Linux Mint from binary package.

Original content from computingforgeeks.com - post 38366
install nodejs ubuntu 18.04 debian 9

Update System

Ensure you have the latest updates for Debian / Ubuntu / Linux Mint.

sudo apt -y update && sudo apt -y upgrade

Install Node.js 18 on Ubuntu / Debian / Linux Mint

After system update, install Node.js 18 on Ubuntu / Debian / Linux Mint by first installing the required repository.

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

Once the repository is added, you can begin the installation of Node.js on Ubuntu / Debian / Linux Mint.

sudo apt install -y nodejs

Use the following command to check installed version of Node.

$ node -v
v18.17.1

If you need Development tools, install them with the command:

sudo apt install gcc g++ make

The Yarn package manager can be installed by running the commands:

curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn

There you have it. Node.js 18 has been installed on Debian / Ubuntu / Linux Mint machines.

Books For Learning Node.js programming:

Similar:

Related Articles

Ubuntu Install Ubuntu 22.04 (Jammy Jellyfish) – Step by Step With Screenshots Automation Install and Configure Foreman 3.x on Debian 11 CentOS How To Install Chromium Web Browser on Linux Monitoring Install Nagios Core on Ubuntu 26.04 LTS

Leave a Comment

Press ESC to close