Created
July 3, 2015 15:50
-
-
Save damian0815/4e0975c127f23de9872a to your computer and use it in GitHub Desktop.
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
# 1. install vagrant and virtualbox | |
# 2. open terminal, run the following: | |
vagrant up ARTACK/debian-jessie | |
vagrant ssh | |
# this will ssh into the vagrant machine | |
# 3. now, inside the ssh session, install caffe and prerequisites | |
sudo apt-get install git python-pip | |
git clone https://github.com/BVLC/caffe.git | |
sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose libatlas-dev libboost-all-dev | |
cat caffe/python/requirements.txt | sed "s/>=.*$//" | while read req; do sudo apt-get install -y python-$req; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment