Last active
July 21, 2016 07:46
-
-
Save myfavouritekk/a13170311538fca91f59ba2d0f060e81 to your computer and use it in GitHub Desktop.
Server setup
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 characters
numpy>=1.7.1 | |
scipy>=0.13.2 | |
scikit-image>=0.9.3 | |
matplotlib>=1.3.1 | |
ipython>=3.0.0 | |
h5py>=2.2.0 | |
leveldb>=0.191 | |
networkx>=1.8.1 | |
nose>=1.3.0 | |
pandas>=0.12.0 | |
python-dateutil>=1.4,<2 | |
protobuf>=2.5.0 | |
python-gflags>=2.0 | |
pyyaml>=3.10 | |
Pillow>=2.3.0 | |
six>=1.1.0 | |
pyparsing | |
cycler | |
easydict | |
glog |
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 characters
#!/usr/bin/env bash | |
# Linux Packages | |
sudo apt-get -y install python-pip | |
sudo apt-get -y install python-scipy | |
sudo apt-get -y install python-opencv | |
sudo apt-get -y install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler | |
sudo apt-get -y install --no-install-recommends libboost-all-dev | |
sudo apt-get -y install libgflags-dev libgoogle-glog-dev liblmdb-dev | |
sudo apt-get -y install libatlas-base-dev | |
# Python Packages | |
for req in $(cat requirements.txt); do sudo pip install $req; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment