Skip to content

Instantly share code, notes, and snippets.

@mattdrose
Forked from djs070/gist:4570480
Last active September 26, 2016 16:50
Show Gist options
  • Save mattdrose/2dd3f0487d494672d82f to your computer and use it in GitHub Desktop.
Save mattdrose/2dd3f0487d494672d82f to your computer and use it in GitHub Desktop.
Install NVM & Node 4.4.0 on Fedora/CentOS
# get nvm
git clone git://github.com/creationix/nvm.git ~/nvm
# activate nvm
echo "source ~/nvm/nvm.sh" >> ~/.bashrc
source ~/.bashrc
# install node
nvm install 4.4.0
nvm alias default 4.4.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment