Last active
February 14, 2018 23:33
-
-
Save simonhaenisch/d87f86562f5780e05657ce17f593753c to your computer and use it in GitHub Desktop.
OpenCV 3 macOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# tap science | |
brew tap homebrew/science | |
# install python 3 | |
brew install python3 | |
# install opencv 3 with python 3 bindings | |
brew install opencv3 --HEAD --with-python3 --without-test | |
# link python 3 module to site-packages | |
ln -s /usr/local/opt/opencv3/lib/python3.5/site-packages/cv2.cpython-35m-darwin.so /usr/local/lib/python3.5/site-packages/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment