Created
September 12, 2014 11:44
-
-
Save springcoil/6af50a87022e225fc8b1 to your computer and use it in GitHub Desktop.
pip install matplotlib
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
#!/bin/bash | |
virtualenv .env && | |
source .env/bin/activate && | |
sudo apt-get install -y libevent-dev && | |
sudo apt-get install -y libyaml-0-2 && | |
sudo apt-get install --yes --force-yes automake autoconf libtool* gfortran && | |
sudo apt-get install --yes --force-yes liblapack-dev && | |
sudo apt-get install --yes --force-yes binutils && | |
sudo apt-get install -y libatlas-dev && | |
sudo apt-get install -y build-essential --upgrade && | |
sudo apt-get install gcc && | |
sudo apt-get install libpng-devlibpng-dev && | |
sudo apt-get install libjpeg8-dev && | |
sudo apt-get install libfreetype6-dev && | |
pip install cython -U && | |
pip install numpy -U && | |
pip install scipy && | |
pip install numexpr -U && | |
pip install bottleneck -U && | |
pip install pandas -U && | |
pip install pyparsing -U && | |
pip install openpyxl && | |
pip install matplotlib && | |
pip install seaborn -U && | |
pip install bokeh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment