Answers for "sudo install npm"

5

install sudo

apt install sudo
Posted by: Guest on May-04-2021
13

linux install node

sudo apt install nodejs
Posted by: Guest on April-28-2020
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
1

installing nvm on ubuntu 18.04

nvm install 12.18.3
Posted by: Guest on August-31-2020
0

npm global install without sudo

wget -O- https://raw.githubusercontent.com/glenpike/npm-g_nosudo/master/npm-g-nosudo.sh | sh
Posted by: Guest on June-03-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language