Skip to content

Instantly share code, notes, and snippets.

@trandaison
Last active March 29, 2017 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trandaison/3ab15dece74914b88ee99af96a0dffb4 to your computer and use it in GitHub Desktop.
Save trandaison/3ab15dece74914b88ee99af96a0dffb4 to your computer and use it in GitHub Desktop.
Install Nodejs on Ubuntu
sudo apt-get install npm
sudo npm cache clean -f
sudo npm install -g n
sudo n stable
sudo ln -sf /usr/local/n/versions/node/<VERSION>/bin/node /usr/bin/node 

To upgrade to latest version (and not current stable) version, you can use

sudo n latest

To undo:

sudo apt-get install --reinstall nodejs-legacy     # fix /usr/bin/node
sudo n rm 6.0.0     # replace number with version of Node that was installed
sudo npm uninstall -g n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment