Skip to content

Instantly share code, notes, and snippets.

@simonhaenisch
Last active February 14, 2018 23:33
Show Gist options
  • Save simonhaenisch/d87f86562f5780e05657ce17f593753c to your computer and use it in GitHub Desktop.
Save simonhaenisch/d87f86562f5780e05657ce17f593753c to your computer and use it in GitHub Desktop.
OpenCV 3 macOS
#! /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