sudo yum install git
yum install java-1.7.0-openjdk
mkdir bin
cd bin/
wget https://raw.github.com/technomancy/leiningen/stable/bin/lein
chmod 755 lein
git clone [email protected]: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
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