Available: opencv-3.1.0 python-3.5 machine with windows 10
I downloaded opencv from pythonlibs in whl format. Installed via pip, in the windows console it works, there are no problems.
But in the IDLE environment does not find the module 'cv2'
The installed library itself (opencv) is not in the python folder, but in the anaconda folder. As I understand it, IDLE has access to the subdirectories of the Python35 folder. I think to import into the folder with the python, or set the path in IDLE to the folder with the anaconda, but I don’t know how to do it crookedly. I would be grateful for the help.
import cv2
when the opencv library is installed on another Python. By installing the library on one Python, you do not make it available for another version of Python ¶ If the package is not pure Python, then binary installers assembled by Gohlke are probably not compatible with Python built for Anaconda. If you started using Anaconda, then put versions designed for Anaconda (separate world). Try it:conda install -c https://conda.binstar.org/menpo opencv
- jfs