-
Notifications
You must be signed in to change notification settings - Fork 0
Installing NodeJS
hongyangjia edited this page Jul 11, 2018
·
4 revisions
Installation Instructions for Linux/Unix
Installed
tar -zxvf node-v10.5.0tar.gz
cd node-v10.5.0
sudo ./configure
sudo make
sudo make install
node -v
npm -v
Uninstall
sudo make uninstall
make clean
Installed
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
node -v
npm -v
Uninstall
sudo npm uninstall npm -g
sudo apt-get remove nodejs
Referenced
VIOIO