From charlesreid1

(Created page with "==installing on debian== For some reason, no npm package is found. This script from Node should set itself up on debian (presumably): https://deb.nodesource.com/setup_0.12...")
 
Line 9: Line 9:
sudo ./https://deb.nodesource.com/setup_0.12
sudo ./https://deb.nodesource.com/setup_0.12
sudo apt-get update
sudo apt-get update
sudo apt-get install --yes nodejs
sudo apt-get install -y nodejs
sudo apt-get upgrade nodejs
</pre>
</pre>

Revision as of 00:34, 29 January 2018

installing on debian

For some reason, no npm package is found.

This script from Node should set itself up on debian (presumably): https://deb.nodesource.com/setup_0.12

curl --silent --location https://deb.nodesource.com/setup_0.12
sudo ./https://deb.nodesource.com/setup_0.12
sudo apt-get update
sudo apt-get install -y nodejs
sudo apt-get upgrade nodejs