Answers for "ubuntu node 12 install"

1

how to install node js 14 on ubuntu

sudo apt install curl
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -
sudo apt install -y nodejs
Posted by: Guest on June-30-2021
2

install nodejs latest version ubuntu

//STEP 1:install using curl (PPA)
sudo apt update && sudo apt install curl -y
//STEP 2:install latest version (replace 14.x with requird one(i.e 15.x))
curl -sL https://deb.nodesource.com/setup_15.x | sudo -E bash -
sudo apt install nodejs
nodejs -v
v15.3.0
Posted by: Guest on December-01-2020
0

install node 12 linux

sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt -y install nodejs
Posted by: Guest on March-01-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language