-
-
Save doctorpangloss/f8463bddce2a91b949639522ea1dcbe4 to your computer and use it in GitHub Desktop.
#!/bin/sh | |
# Install brew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Apple hides old versions of stuff at https://developer.apple.com/download/more/ | |
# Install the latest XCode (8.0). | |
# We used to install the XCode Command Line Tools 7.3 here, but that would just upset the most recent versions of brew. | |
# So we're going to install all our brew dependencies first, and then downgrade the tools. You can switch back after | |
# you have installed caffe. | |
# Install CUDA toolkit 8.0 release candidate | |
# Register and download from https://developer.nvidia.com/cuda-release-candidate-download | |
# or this path from https://developer.nvidia.com/compute/cuda/8.0/rc/local_installers/cuda_8.0.29_mac-dmg | |
# Select both the driver and the toolkit, no documentation necessary | |
# Install the experimental NVIDIA Mac drivers | |
# Download from http://www.nvidia.com/download/driverResults.aspx/103826/en-us | |
# Install cuDNN v5 for 8.0 RC or use the latest when it's available | |
# Register and download from https://developer.nvidia.com/rdp/cudnn-download | |
# or this path: https://developer.nvidia.com/rdp/assets/cudnn-8.0-osx-x64-v5.0-ga-tgz | |
# extract to the NVIDIA CUDA folder and perform necessary linking | |
# into your /usr/local/cuda/lib and /usr/local/cuda/include folders | |
# You will need to use sudo because the CUDA folder is owned by root | |
sudo tar -xvf ~/Downloads/cudnn-8.0-osx-x64-v5.0-ga.tar /Developer/NVIDIA/CUDA-8.0/ | |
sudo ln -s /Developer/NVIDIA/CUDA-8.0/lib/libcudnn.dylib /usr/local/cuda/lib/libcudnn.dylib | |
sudo ln -s /Developer/NVIDIA/CUDA-8.0/lib/libcudnn.5.dylib /usr/local/cuda/lib/libcudnn.5.dylib | |
sudo ln -s /Developer/NVIDIA/CUDA-8.0/lib/libcudnn_static.a /usr/local/cuda/lib/libcudnn_static.a | |
sudo ln -s /Developer/NVIDIA/CUDA-8.0/include/cudnn.h /usr/local/cuda/include/cudnn.h | |
# Install the brew dependencies | |
# Do not install python through brew. Only misery lies there | |
# We'll use the versions repository to get the right version of boost and boost-python | |
# We'll also explicitly upgrade libpng because it's out of date | |
# Do not install numpy via brew. Your system python already has it. | |
brew install -vd snappy leveldb gflags glog szip lmdb | |
brew install hdf5 opencv | |
brew upgrade libpng | |
brew tap homebrew/science | |
brew tap homebrew/versions | |
brew install --build-from-source --with-python -vd protobuf | |
brew install --build-from-source -vd boost159 boost-python159 | |
# Clone the caffe repo | |
cd ~/Documents | |
git clone https://github.com/BVLC/caffe.git | |
# Setup Makefile.config | |
# You can download mine directly from here, but I'll explain all the selections | |
# For XCode 7.3: | |
# https://www.dropbox.com/s/vuy6ha0p7cc5px3/Makefile.config?dl=1 | |
# For XCode 8.0 and later (Sierra): | |
# https://dl.dropboxusercontent.com/u/2891540/caffe_10.12/Makefile.config | |
# First, we'll enable cuDNN | |
# USE_CUDNN := 1 | |
# In order to use the built-in Accelerate.framework, you have to reference it. | |
# Astonishingly, nobody has written this anywhere on the internet. | |
# BLAS := atlas | |
# If you use El Capitan (10.11), we'll use the 10.11 sdk path for vecLib: | |
# BLAS_INCLUDE := /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/Headers | |
# Otherwise (10.12), let's use the 10.12 sdk path: | |
# BLAS_INCLUDE := /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/Headers | |
# BLAS_LIB := /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A | |
# Configure to use system python and system numpy | |
# PYTHON_INCLUDE := /System/Library/Frameworks/Python.framework/Headers \ | |
# /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy/core/include | |
# PYTHON_LIB := /System/Library/Frameworks/Python.framework/Versions/2.7/lib | |
# Configure to enable Python layers. Some projects online need this | |
# WITH_PYTHON_LAYER := 1 | |
curl https://dl.dropboxusercontent.com/u/2891540/Makefile.config -o Makefile.config | |
# Download the XCode Command Line Tools for 7.3, since NVIDIA does not yet support Xcode 8.0's tools | |
# http://adcdownload.apple.com/Developer_Tools/Command_Line_Tools_OS_X_10.11_for_Xcode_7.3/Command_Line_Tools_OS_X_10.11_for_Xcode_7.3.dmg | |
# Now, choose those tools instead | |
sudo xcode-select --switch /Library/Developer/CommandLineTools | |
# Go ahead and build. | |
cd caffe | |
make -j8 all | |
# To get python going, first we need the dependencies | |
# On a super-clean Mac install, you'll need to easy_install pip. | |
sudo -H easy_install pip | |
# Now, we'll install the requirements system-wide. You may also muck about with a virtualenv. | |
# Astonishingly, --user is not better known. | |
pip install --user -r python/requirements.txt | |
# Go ahead and run pytest now. Horrible @rpath warnings which can be ignored. | |
make -j8 pytest | |
# Now, install the package | |
# Make the distribution folder | |
make distribute | |
# Install the caffe package into your local site-packages | |
cp -r distribute/python/caffe ~/Library/Python/2.7/lib/python/site-packages/ | |
# Finally, we have to update references to where the libcaffe libraries are located. | |
# You can see how the paths to libraries are referenced relatively | |
# otool -L ~/Library/Python/2.7/lib/python/site-packages/caffe/_caffe.so | |
# Generally, on a System Integrity Protection -enabled (SIP-enabled) Mac this is no good. | |
# So we're just going to change the paths to be direct | |
cp distribute/lib/libcaffe.so.1.0.0-rc3 ~/Library/Python/2.7/lib/python/site-packages/caffe/libcaffe.so.1.0.0-rc3 | |
install_name_tool -change @rpath/libcaffe.so.1.0.0-rc3 ~/Library/Python/2.7/lib/python/site-packages/caffe/libcaffe.so.1.0.0-rc3 ~/Library/Python/2.7/lib/python/site-packages/caffe/_caffe.so | |
# Verify that everything works | |
# start python and try to import caffe | |
python -c 'import caffe' | |
# If you got this far without errors, congratulations, you installed Caffe on a modern Mac OS X | |
@jrimestad re: CUDA 7.5 and Xcode 7.3, definitely upgrade to El Capitan / Sierra if you can and use CUDA 8.0. If you're using a Hackintosh, I can confirm that Sierra with a Titan X (and probably all Maxwell chips) work fine. Allegedly the new drivers that ship with the CUDA installation package support Pascal, but it's untested on my end.
Re: renaming _caffe.dylib, yep, just pretty much ignore what other people say, they basically never follow their own steps on clean machines, so files are found in all sorts of places and they think stuff works when it really does not. Also, I believe this does not use CMAKE, while that PR does.
It's unusual that you should get vecLib
compile errors. On both my Sierra and El Capitan stations I have vecLib in the right places. I corrected the installation instructions for Sierra though (it was essentially untested until now).
Hi, when I ran make -j8 all, I got following errors"
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [.build_release/lib/libcaffe.so.1.0.0-rc3] Error
Please help. Thank you.
in case where cudnn library is a tgz file, run
sudo tar -xvzf ~/Downloads/cudnn-8.0-osx-x64-v5.0-ga.tgz -C /Developer/NVIDIA/CUDA-8.0/
instead of
sudo tar -xvf ~/Downloads/cudnn-8.0-osx-x64-v5.0-ga.tar /Developer/NVIDIA/CUDA-8.0/
Thank you so much for this guide!
Here are some other errors and solutions I encountered:
-
make pytest doesn’t work!! Veclib issue:
“ld: framework not found vecLib”
Solved by reinstalling xcode command line tools -
import caffe doesn’t work! Due to a Malloc error. This is a leveldb issue.
- Almost solution: BVLC/caffe#4783
Compiling without leveldb broke the basic mnist example from the caffe website, so not the best solution
He suggests installing leveldb 1.9 (not trivial!), which still doesn’t solve it. - True solution: wbolster/plyvel#54
Install a fixed version of leveldb: https://gist.github.com/hellysmile/ffd665fb1bd1bf978bc99cb7f57250c9
Install via brew with url by pressing the “raw” button:
brew install https://gist.githubusercontent.com/hellysmile/ffd665fb1bd1bf978bc99cb7f57250c9/raw/c0a06f1b98388333955f49e30e01dfdde2d82526/leveldb.rb
Also posted this in my own blog:
https://eddiesmo.wordpress.com/2016/12/20/how-to-set-up-caffe-environment-and-pycaffe-on-os-x-10-12-sierra/
Thank you for this, it really helped me. I found that doing this on 10.12.2 required me to downgrade boost to 1.55 vs. 1.59 as mentioned above, or else make pycaffe
always failed.
I also found that the version of protobuf
used by brew and pip was breaking caffe at runtime (e.g., make pytest
failing with crazy errors reading protobufs and __init__ got an unexpected keyword argument 'syntax'
for every unit test). I found that I needed to uninstall/re-install an explicit version of protobuf
as described in tensorflow/tensorflow#11 (comment), specifically I did:
$ brew uninstall protobuf
$ pip uninstall protobuf
$ pip install 'protobuf>=3.0.0a3'
I was so glad for the caffe easy installation gospel, yet there are tons of error occurring. However, I tried
$ brew uninstall protobuf
$ pip uninstall protobuf
$ pip install 'protobuf>=3.0.0a3'
then bash it.
and it shows ImportError: No module named caffe
Thanks for the tutorial! I've successfully built Caffe, used 2 days to figure out.
(中文版) For those Chinese who need help about this: https://blog.birkhoff.me/macos-sierra-10-12-2-build-caffe/
http://www.nvidia.com/download/driverResults.aspx/113889/en-us
for mac os 10.12.2
http://www.nvidia.com/download/driverResults.aspx/114669/en-us
for mac os 10.12.3
Has anyone used MKL as the math library, I can't seem to link it properly
When I run python -c 'import caffe
I get:
Traceback (most recent call last):
File "", line 1, in
File "/Users/alejandroposada/Library/Python/2.7/lib/python/site-packages/caffe/init.py", line 1, in
from .pycaffe import Net, SGDSolver, NesterovSolver, AdaGradSolver, RMSPropSolver, AdaDeltaSolver, AdamSolver, NCCL, Timer
File "/Users/alejandroposada/Library/Python/2.7/lib/python/site-packages/caffe/pycaffe.py", line 13, in
from ._caffe import Net, SGDSolver, NesterovSolver, AdaGradSolver,
ImportError: dlopen(/Users/alejandroposada/Library/Python/2.7/lib/python/site-packages/caffe/_caffe.so, 2): Library not loaded: @rpath/libcudnn.5.dylib
Referenced from: /usr/local/lib/libcaffe.so.1.0.0-rc5
Reason: image not found
How can I solve this?
(make -j8 pytest
's result is OK)
I got
Liams-MBP:caffe lca$ brew install hdf5 opencv
Error: No available formula with the name "hdf5"
until I did brew tap homebrew/science
Also homebrew/versions is now deprecated
make: *** No rule to make target `all'. Stop.
I get this after running make -j8 all. Please help. Thank you !
If someone needs to run this version of caffe: https://github.com/weiliu89/caffe/tree/ssd
I've followed this guide and it works. Just make sure that:
- hdf5 version = 1.10.1
- protobuf version = 3.2.0_1
because brew downloads updated dependencies for those two
My MacBook's GPU is Intel Iris Graphics 6100, not cuda-based, so cannot run caffe with GPU on my mac? And there is no need to install cuda toolkit?
@ShivaliGoel Run the command in the caffe directory, i.e. cd caffe
raffaelladeMacBook-Pro:Documents raffaella$ make -j8 all make: *** No rule to make target all'. Stop.
What should I do? I got this error.
brew tap homebrew/versions - deprecated
brew tap homebrew/science - deprecated
what to use instead?
@adelaidepan Run the command in the caffe directory, i.e., cd caffe
.
@joyzhou28 You cannot run caffe with GPU on your Mac, and you do not need to install CUDA toolkit. Download the latest binary from their website if you don't need CUDA support.
dropbox failed....
Is it possible on Mac 10.13 series?
Looks like your code was replicated here
https://gist.github.com/rizkyario/8adf4e248afd3de509c00f30bd23fe61
@joyzhou28 You cannot run caffe with GPU on your Mac, and you do not need to install CUDA toolkit. Download the latest binary from their website if you don't need CUDA support.
I also have a MacOS 10.12 but with no Nvidia graphics driver (I have Intel Iris 1600 instead). So if I understand your comment correctly, I won't be able to install CUDA toolkit on my Mac. What do you mean by latest binary though? Can you provide a link? What does this binary do?
And if I download the binary instead of the CUDA toolkit, how does this change the commands I should run from your install_caffe.sh file? Thank you!
Hi, when I ran make -j8 all, I got following errors"
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [.build_release/lib/libcaffe.so.1.0.0-rc3] ErrorPlease help. Thank you.
I ran into the same issue. I have no idea what this error is about. Can someone please help. Thank you.
Hi, you're makefile config is broken: https://dl.dropboxusercontent.com/u/2891540/Makefile.config
dropbox is giving 404
This was very helpfull albeit I never got it compiling using CUDA 7.5 and Xcode 7.3 because of vecLib compile errors. Had no problem compiling without CUDA though 😄
In the end I still had to rename _caffe.dylib to _caffe.so in the python package to use caffe in python, which seems weird given this PR BVLC/caffe@a14f0ef