How to install Node Lts version on your ubuntu

sweetestshuga

Eze Sugar 👩‍💻

Posted on September 23, 2024

How to install Node Lts version on your ubuntu

To download and install LTS version of Node.js on Ubuntu 18, 20, 24 or any versions above, follow these steps:

Update Package index:
sudo apt update
Install Node.js LTS version using curl:
curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
Install Node.js:
sudo apt-get install -y nodejs
Verify the installation by checking the Node.js version:
node -v

If you find this helpful, please follow and like

💖 💪 🙅 🚩
sweetestshuga
Eze Sugar 👩‍💻

Posted on September 23, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related