Last active
December 13, 2015 19:28
-
-
Save skt-bford/4962540 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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