Skip to content

Instantly share code, notes, and snippets.

@Adriem
Forked from djs070/gist:4570480
Created February 24, 2016 12:14
Show Gist options
  • Save Adriem/48abb5d38ee569978c14 to your computer and use it in GitHub Desktop.
Save Adriem/48abb5d38ee569978c14 to your computer and use it in GitHub Desktop.
Install NVM & Node 0.8.17 on Fedora/CentOS
# install git
yum install git -y
# 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 0.8.17
nvm alias default 0.8.17
# install express
npm install -g express
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment