- 
      
- 
        Save omar-florez/11021080 to your computer and use it in GitHub Desktop. 
Revisions
- 
        westurner revised this gist Oct 5, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewingThis 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 @@ -20,7 +20,7 @@ setup_pandas () { brew tap homebrew/dupes brew install homebrew/dupes/freetype pip install numpy python-dateutil pytz scipy matplotlib statsmodels pip install pandas } 
- 
        westurner revised this gist Jul 29, 2012 . 1 changed file with 7 additions and 7 deletions.There are no files selected for viewingThis 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,5 +1,11 @@ #!/bin/sh setup_brew () { if ![-f "/usr/local/bin/brew"]; then /usr/bin/ruby -e "$(/usr/bin/curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)" fi } setup_ipython () { brew install readline brew install zeromq @@ -8,12 +14,6 @@ setup_ipython () { python -c 'from IPython.external import mathjax; mathjax.install_mathjax()' } setup_pandas () { brew install gfortran brew install pkg-config @@ -24,4 +24,4 @@ setup_pandas () { pip install pandas } setup_brew && setup_ipython && setup_pandas && ipython notebook --pylab=inline 
- 
        westurner created this gist Jul 29, 2012 .There are no files selected for viewingThis 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,27 @@ #!/bin/sh setup_ipython () { brew install readline brew install zeromq pip install ipython pyzmq tornado pygments python -c 'from IPython.external import mathjax; mathjax.install_mathjax()' } setup_brew () { if ![-f "/usr/local/bin/brew"]; then /usr/bin/ruby -e "$(/usr/bin/curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)" fi } setup_pandas () { brew install gfortran brew install pkg-config brew tap homebrew/dupes brew install homebrew/dupes/freetype pip install numpy python-dateutil pytz scipy matplotlib pip install pandas } setup_ipython && setup_brew && setup_pandas && ipython notebook --pylab=inline