Skip to content

Instantly share code, notes, and snippets.

@campeterson
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save campeterson/9422175 to your computer and use it in GitHub Desktop.

Select an option

Save campeterson/9422175 to your computer and use it in GitHub Desktop.

Revisions

  1. campeterson revised this gist Mar 8, 2014. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -1,8 +1,10 @@
    ## Install Git
    sudo yum install git
    sudo yum install git

    ## Install JVM

    yum install java-1.7.0-openjdk

    ## Install Leiningen

    mkdir bin
  2. campeterson revised this gist Mar 8, 2014. 1 changed file with 18 additions and 22 deletions.
    40 changes: 18 additions & 22 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -1,27 +1,25 @@
    Install Git
    ## Install Git
    sudo yum install git

    Install JVM
    ## Install JVM

    Install Leiningen & Drake
    ## Install Leiningen

    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
    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


    sudo pip install pymongo
  3. campeterson revised this gist Mar 8, 2014. 1 changed file with 49 additions and 9 deletions.
    58 changes: 49 additions & 9 deletions gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -1,16 +1,56 @@
    Just keeping track of the steps I took installing Pandas on an EC2 Redhat Instance
    Install Git
    sudo yum install git

    sudo easy_install pip
    Install JVM

    sudo yum install python-matplotlib scipy python-pandas sympy python-nose
    Install Leiningen & Drake

    sudo yum install build-essential gfortran gcc g++ python-dev
    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

    sudo pip install pandas

    gcc: error trying to exec 'cc1plus': execvp: No such file or directory

    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

    Still not working
    Install Pymongo

    sudo pip install pymongo

    sudo yum groupinstall "Development Tools"

  4. campeterson revised this gist Mar 7, 2014. 1 changed file with 10 additions and 5 deletions.
    15 changes: 10 additions & 5 deletions gistfile1.md
    Original 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 easy_install pip

    sudo yum install python-matplotlib scipy python-pandas sympy python-nose
    sudo yum install python-matplotlib scipy python-pandas sympy python-nose

    sudo yum install build-essential gfortran gcc g++ python-dev
    sudo yum install build-essential gfortran gcc g++ python-dev

    sudo pip install pandas
    sudo pip install pandas

    Still not working
    gcc: error trying to exec 'cc1plus': execvp: No such file or directory

    Still not working

    sudo yum groupinstall "Development Tools"

  5. campeterson created this gist Mar 7, 2014.
    11 changes: 11 additions & 0 deletions gistfile1.md
    Original 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