Last active
August 29, 2015 13:57
-
-
Save campeterson/9422175 to your computer and use it in GitHub Desktop.
Revisions
-
campeterson revised this gist
Mar 8, 2014 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,10 @@ ## Install Git sudo yum install git ## Install JVM yum install java-1.7.0-openjdk ## Install Leiningen mkdir bin -
campeterson revised this gist
Mar 8, 2014 . 1 changed file with 18 additions and 22 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,27 +1,25 @@ ## Install Git sudo yum install git ## Install JVM ## Install Leiningen mkdir bin cd bin/ wget https://raw.github.com/technomancy/leiningen/stable/bin/lein chmod 755 lein ## Install Drake git clone git@github.com:Factual/drake.git cd ../ vim drake.sh mv drake drake-repo/ mkdir repos mv drake-repo/ repos/drake mv drake.sh drake chmod 755 drake Install Pandas @@ -51,6 +49,4 @@ Install MongoDB Install Pymongo sudo pip install pymongo -
campeterson revised this gist
Mar 8, 2014 . 1 changed file with 49 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,16 +1,56 @@ Install Git sudo yum install git Install JVM Install Leiningen & Drake mkdir bin cd bin/ git clone git@github.com:Factual/drake.git wget https://raw.github.com/technomancy/leiningen/stable/bin/lein chmod 755 lein cd ../ ls vim drake.sh ls mv drake drake-repo/ ls mkdir repos mv drake-repo/ repos/drake ls mv drake.sh drake chmod 755 drake Install Pandas sudo easy_install pip sudo yum install python-matplotlib scipy python-pandas sympy python-nose # sudo yum install build-essential gfortran gcc g++ python-dev # not sure if this helped sudo yum groupinstall "Development Tools" sudo pip install pandas Install MongoDB http://docs.mongodb.org/manual/tutorial/install-mongodb-on-red-hat-centos-or-fedora-linux/ Create a /etc/yum.repos.d/mongodb.repo file to hold the following configuration information for the MongoDB repository: [mongodb] name=MongoDB Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/ gpgcheck=0 enabled=1 yum install mongo-10gen mongo-10gen-server Install Pymongo sudo pip install pymongo -
campeterson revised this gist
Mar 7, 2014 . 1 changed file with 10 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,16 @@ Just keeping track of the steps I took installing Pandas on an EC2 Redhat Instance sudo easy_install pip sudo yum install python-matplotlib scipy python-pandas sympy python-nose sudo yum install build-essential gfortran gcc g++ python-dev sudo pip install pandas gcc: error trying to exec 'cc1plus': execvp: No such file or directory Still not working sudo yum groupinstall "Development Tools" -
campeterson created this gist
Mar 7, 2014 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ Just keeping track of the steps I took installing Pandas on an EC2 Redhat Instance sudo easy_install pip sudo yum install python-matplotlib scipy python-pandas sympy python-nose sudo yum install build-essential gfortran gcc g++ python-dev sudo pip install pandas Still not working