Skip to content

Instantly share code, notes, and snippets.

@damian0815
Created July 3, 2015 15:50
Show Gist options
  • Save damian0815/4e0975c127f23de9872a to your computer and use it in GitHub Desktop.
Save damian0815/4e0975c127f23de9872a to your computer and use it in GitHub Desktop.
# 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