Skip to content

Instantly share code, notes, and snippets.

@ROZ-MOFUMOFU-ME
Last active November 29, 2019 10:49
Show Gist options
  • Save ROZ-MOFUMOFU-ME/b0cd808f5a28993b1ebd70e06741e366 to your computer and use it in GitHub Desktop.
Save ROZ-MOFUMOFU-ME/b0cd808f5a28993b1ebd70e06741e366 to your computer and use it in GitHub Desktop.
Install node&npm for zny-nomp on Ubuntu
/* Install nodejs and npm
sudo apt install nodejs npm
/* Install node version control tool "n"
sudo npm install n -g
/* Install node v9
sudo n v9
/* Install npm
sudo npm install npm -g
/* Delete old nodejs and npm
sudo apt purge -y nodejs npm
/* Create symbolic link
sudo ln -sf /usr/local/bin/node /usr/bin/node
sudo ln -sf /usr/local/bin/npm /usr/bin/npm
/* Check your node&npm ver.
node -v
npm -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment