install open cv on windows 10 and python 3.5

MRAB python at mrabarnett.plus.com
Fri Apr 1 18:54:56 EDT 2016


On 2016-04-01 22:37, Xristos Xristoou wrote:
> Τη Παρασκευή, 1 Απριλίου 2016 - 1:56:52 μ.μ. UTC+3, ο χρήστης Xristos Xristoou έγραψε:
>> hello,
>>
>> i have windows 10 and python 3.5 and i want to use
>> open cv but i think so opencv work only on python 2.7 ?
>> and i install this http://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv
>> but not work again
>
> in my site-packages i have :
> opencv_python-3.1.0.dist-info
> cv2.cp35-win32.pyd
> cv2.pyd
> cv
> and more opencv.dlls
> yes i have and python2.7 for other version
> in pip install succefully
>
If a module has been written in Python, it will have the extension 
".py", but if it has been written in C, it will have the extension 
".pyd" (on Windows) or ".so" (on Linux).

The real test is if you can import it:

 >>> import cv2




More information about the Python-list mailing list