Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failed to run conda install -c menpo opencv3=3.2.0 in Windows7

I want to update opencv from 3.1.0 to 3.2.0

I run "conda install -c menpo opencv3=3.1.0" to install opencv 3.1.0

when I run "conda install -c menpo opencv3=3.2.0", I got error.

C:\Users\eason>conda install -c menpo opencv3=3.2.0
Fetching package metadata .............


PackageNotFoundError: Package not found: '' Package missing in current win-64 ch
annels:
- opencv3 3.2.0*

You can search for packages on anaconda.org with

anaconda search -t conda opencv3

https://anaconda.org/menpo/opencv3

When I run "anaconda search -t conda opencv3"... enter image description here

I found opencv3=3.2.0 , but I can't install it?

Is anyone helps ? thanks!

like image 972
eason Avatar asked Feb 18 '17 01:02

eason


2 Answers

run the following command

conda install -c conda-forge opencv=3.2.0
like image 127
pravinyadav Avatar answered Nov 15 '22 09:11

pravinyadav


Just pushed my OpenCV 3.2 binary to github. It compiled with opencv_contrib modules and runs on Win10 64-bit with Python 2.7.

You may have a trial. Good Luck!

like image 32
thewaywewere Avatar answered Nov 15 '22 09:11

thewaywewere