Da OpenCV3 nicht auf anaconda installiert werden konnte (opencv 2.4.10 vom 11. November 2015). Wenn Sie sich nicht für opencv3 interessieren, können Sie es mit dem folgenden Befehl installieren.
conda install -c https://conda.binstar.org/jjhelmus opencv
Mac OS X 10.10.1 homebrew pyenv anaconda3-2.4.0 (installed by pyenv)
brew tap homebrew/science
brew install opencv3 --with-python3
brew link opencv3 --force
% cd /Users/(Nutzername)/.pyenv/versions/anaconda3-2.4.0/lib/python3.5/site-packages
% ln -s /usr/local/Cellar/opencv3/3.0.0/lib/python3.5/site-packages/cv2.cpython-35m-darwin.so cv2.so
Bitte ändern Sie den Pfad entsprechend der Version von Anaconda oder Python. Suchen Sie auch für "cv2.cpython-35m-darwin.so" nach etwas Ähnlichem, abhängig von Ihrer Umgebung.
% python
Python 3.5.0 |Anaconda 2.4.0 (x86_64)| (default, Oct 20 2015, 14:39:26)
[GCC 4.2.1 (Apple Inc. build 5577)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
>>> cv2.__version__
'3.0.0'
>>>
Wenn beim Importieren kein Fehler auftritt, ist die Installation erfolgreich ✨
Recommended Posts