Installing opencv on Windows 10 with python 3.6 and anaconda 3.6

后端 未结 13 2282
庸人自扰
庸人自扰 2020-11-29 03:11

How to install opencv with python 3.6 and anaconda 3.6?

I tried conda install -c https://conda.binstar.org/menpo opencv3

but i get the following

13条回答
  •  佛祖请我去吃肉
    2020-11-29 03:35

    I see you found a solution but this may be helpful for others. The package is not available for Python 3.6. You can check this by going to that package channel on anaconda.org and selecting the files tab. You will see the package tarballs with the Python version listed as py27, py34, py35,etc. This is a good way to check for Python versions of a specific package.

    You can also run the following to see the package versions and Python versions available for your OS from the Anaconda channel:

    conda search 
    

    Or to search a particular channel and package you can do this:

    conda search -c  
    

提交回复
热议问题