Answers for "npm with ubuntu"

8

install npm ubuntu

sudo apt update
sudo apt install nodejs
sudo apt install npm
Posted by: Guest on January-03-2021
11

install nodejs on ubuntu

sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install nodejs

node -v    #to check if its installed
Posted by: Guest on July-25-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language