Skip to content

Instantly share code, notes, and snippets.

@captn3m0
Last active September 30, 2015 12:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save captn3m0/1792022 to your computer and use it in GitHub Desktop.
Save captn3m0/1792022 to your computer and use it in GitHub Desktop.
Node Installation via nvm on Ubuntu
git clone https://github.com/creationix/nvm.git ~/.nvm #clone the repo
. ~/.nvm/nvm.sh #load nvm
echo ". ~/.nvm/nvm.sh" >> ~/.bashrc #add nvm to bashrc, so it loads automatically
nvm install v0.8.16 #install nvm (will download binaries)
nvm use v0.8.16
#load this version as default from next time
nvm alias default v0.8.16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment