Skip to content

Instantly share code, notes, and snippets.

@skt-bford
Last active December 13, 2015 19:28
Show Gist options
  • Save skt-bford/4962540 to your computer and use it in GitHub Desktop.
Save skt-bford/4962540 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# requirements
yum -y install wget openssl-devel
yum -y groupinstall "Development Tools"
# install nodejs
version=0.10.13
cd /usr/local/src
wget http://nodejs.org/dist/v$version/node-v$version.tar.gz
tar zxvf node-v$version.tar.gz
cd node-v$version
./configure
make
make install
cd /usr/local/src
rm -rf node-v*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment