From da3e9b1e51671b8350d6b8909da4bb608688ddbc Mon Sep 17 00:00:00 2001 From: Jason Yosinski Date: Sat, 16 Aug 2014 23:18:12 -0700 Subject: Updated documentation to include instructions to install protobuf with Python support on Mac OS X --- docs/installation.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/installation.md') diff --git a/docs/installation.md b/docs/installation.md index ff0760dd..bc36f7eb 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -135,7 +135,8 @@ In other `ENV` settings, things may not work as expected. Simply run the following: brew install --build-from-source --with-python boost - for x in snappy leveldb protobuf gflags glog szip lmdb homebrew/science/opencv; do brew install $x; done + brew install --with-python protobuf + for x in snappy leveldb gflags glog szip lmdb homebrew/science/opencv; do brew install $x; done Building boost from source is needed to link against your local Python (exceptions might be raised during some OS X installs, but **ignore** these and continue). If you do not need the Python wrapper, simply doing `brew install boost` is fine. -- cgit v1.2.3 From 5e8e19b1387de73c1de01b80a052c71c4195b317 Mon Sep 17 00:00:00 2001 From: Jason Yosinski Date: Sat, 16 Aug 2014 23:41:52 -0700 Subject: Updated installation docs for OS X 10.9 brew install protobuf as well --- docs/installation.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/installation.md') diff --git a/docs/installation.md b/docs/installation.md index bc36f7eb..e13f02ad 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -173,7 +173,8 @@ To edit the formulae in turn, run After this, run - for x in snappy leveldb protobuf gflags glog szip lmdb homebrew/science/opencv; do brew uninstall $x; brew install --build-from-source --fresh -vd $x; done + for x in snappy leveldb gflags glog szip lmdb homebrew/science/opencv; do brew uninstall $x; brew install --build-from-source --fresh -vd $x; done + brew uninstall protobuf; brew install --build-from-source --with-python --fresh -vd protobuf brew install --build-from-source --with-python --fresh -vd boost **Note** that `brew install --build-from-source --fresh -vd boost` is fine if you do not need the Caffe Python wrapper. -- cgit v1.2.3