Skip to content

Instantly share code, notes, and snippets.

View jpgehrig's full-sized avatar

Jean-Pierre Gehrig jpgehrig

View GitHub Profile
@jpgehrig
jpgehrig / Makefile.config
Created December 23, 2016 12:28
Install Caffe on OS X 10.11 with Python 3 - Makefile.config
## Refer to http://caffe.berkeleyvision.org/installation.html
# Contributions simplifying and improving our build system are welcome!
# cuDNN acceleration switch (uncomment to build with cuDNN).
# USE_CUDNN := 1
# CPU-only switch (uncomment to build without GPU support).
CPU_ONLY := 1
# uncomment to disable IO dependencies and corresponding data layers
@jpgehrig
jpgehrig / install-caffe.sh
Last active May 11, 2019 12:44
Install Caffe on OS X 10.11 with Python 3
#!/bin/bash
git clone [email protected]:BVLC/caffe.git
cd caffe
brew install -vd snappy leveldb gflags glog szip lmdb
brew install --build-from-source --with-python3 -vd protobuf
brew install --build-from-source --with-python3 -vd boost159 boost-python159
curl https://gist.githubusercontent.com/jpgehrig/92e38396f855cd1f1c911a0da07f8aef/raw/ > Makefile.config