Answers for "install stable npm ubuntu"

7

install npm ubuntu

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

ubuntu install latest node and npm

# Using Ubuntu
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs

# Using Debian, as root
curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
apt-get install -y nodejs
Posted by: Guest on June-04-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language