Re: install open cv on windows 10 and python 3.5

2016-04-02 Thread Xristos Xristoou
Τη Παρασκευή, 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

yes i cant import cv2 on my idle that is my problem
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: install open cv on windows 10 and python 3.5

2016-04-01 Thread MRAB

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

--
https://mail.python.org/mailman/listinfo/python-list


Re: install open cv on windows 10 and python 3.5

2016-04-01 Thread Xristos Xristoou
Τη Παρασκευή, 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

-- 
https://mail.python.org/mailman/listinfo/python-list


Re: install open cv on windows 10 and python 3.5

2016-04-01 Thread Terry Reedy

On 4/1/2016 4:38 PM, saxr...@gmail.com wrote:

Τη Παρασκευή, 1 Απριλίου 2016 - 1:56:52 μ.μ. UTC+3, ο χρήστης sax...@gmail.com 
έγραψε:

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


show me no module name cv2


Do you have other versions of python installed.  How did you install 
opencv/cv2?  If pip, what did it say? What you you see in 
python35/Lib/site-packages?


--
Terry Jan Reedy


--
https://mail.python.org/mailman/listinfo/python-list


Re: install open cv on windows 10 and python 3.5

2016-04-01 Thread saxri89
Τη Παρασκευή, 1 Απριλίου 2016 - 1:56:52 μ.μ. UTC+3, ο χρήστης sax...@gmail.com 
έγραψε:
> 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

show me no module name cv2
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: install open cv on windows 10 and python 3.5

2016-04-01 Thread MRAB

On 2016-04-01 20:11, saxr...@gmail.com wrote:

Τη Παρασκευή, 1 Απριλίου 2016 - 1:56:52 μ.μ. UTC+3, ο χρήστης sax...@gmail.com 
έγραψε:

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


i install opencv_python-3.1.0-cp35-none-win32.whl
but if i import cv2 or import opencv
then show me no module with that name


"OpenCV" is the name of the project, not the name of a module.

The name of the module "cv2".
--
https://mail.python.org/mailman/listinfo/python-list


Re: install open cv on windows 10 and python 3.5

2016-04-01 Thread saxri89
Τη Παρασκευή, 1 Απριλίου 2016 - 1:56:52 μ.μ. UTC+3, ο χρήστης sax...@gmail.com 
έγραψε:
> 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

i install opencv_python-3.1.0-cp35-none-win32.whl 
but if i import cv2 or import opencv
then show me no module with that name
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: install open cv on windows 10 and python 3.5

2016-04-01 Thread Terry Reedy

On 4/1/2016 6:56 AM, saxr...@gmail.com wrote:

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 ?


The following link has binaries for 3.4 and 3.5 as well.  I believe 
Gohlke tests his binaries, so I expect them to work.



and i install this http://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv
but not work again


I don't know what 'not work again' means here.

--
Terry Jan Reedy

--
https://mail.python.org/mailman/listinfo/python-list


install open cv on windows 10 and python 3.5

2016-04-01 Thread saxri89
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
-- 
https://mail.python.org/mailman/listinfo/python-list