From 58deb58084a61f70986e2ba6c2e98709febd6e35 Mon Sep 17 00:00:00 2001 From: Zifei Tong Date: Thu, 12 Mar 2015 20:11:52 +0800 Subject: [PATCH] [docs] Remove `--fresh` Homebrew option Since it's removed from Homebrew [1]. [1]: Homebrew/homebrew@8cdf4d8ebf439eb9a9ffcaa0e455ced9459e1e41 --- docs/install_osx.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/install_osx.md b/docs/install_osx.md index e1a1d56..fbfc71e 100644 --- a/docs/install_osx.md +++ b/docs/install_osx.md @@ -15,7 +15,7 @@ In other `ENV` settings, things may not work as expected. **General dependencies** - brew install --fresh -vd snappy leveldb gflags glog szip lmdb + brew install -vd snappy leveldb gflags glog szip lmdb # need the homebrew science source for OpenCV and hdf5 brew tap homebrew/science brew install hdf5 opencv @@ -31,8 +31,8 @@ If using Anaconda Python, HDF5 is bundled and the `hdf5` formula can be skipped. **Remaining dependencies, with / without Python** # with Python pycaffe needs dependencies built from source - brew install --build-from-source --with-python --fresh -vd protobuf - brew install --build-from-source --fresh -vd boost boost-python + brew install --build-from-source --with-python -vd protobuf + brew install --build-from-source -vd boost boost-python # without Python the usual installation suffices brew install protobuf boost @@ -78,9 +78,9 @@ To edit the formulae in turn, run After this, run - 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 --fresh -vd boost boost-python + for x in snappy leveldb gflags glog szip lmdb homebrew/science/opencv; do brew uninstall $x; brew install --build-from-source -vd $x; done + brew uninstall protobuf; brew install --build-from-source --with-python -vd protobuf + brew install --build-from-source -vd boost boost-python If this is not done exactly right then linking errors will trouble you. -- 2.7.4