Installing OpenCV for all conda environments

我怕爱的太早我们不能终老 提交于 2019-12-06 11:37:43

OpenCV 3.3 for python 2.7 and 3.6 on linux are available from conda repository. You may not need to compile yourself. Just use conda command to install it to your environement.

See this

  1. https://anaconda.org/conda-forge/opencv for the commands.
    • conda install -c conda-forge -n env opencv or
    • conda install -c conda-forge/label/broken -n env opencv
    • where env is your conda virtual environment name
  2. https://anaconda.org/conda-forge/opencv/files for detailed files on python version and OS.

Hope this help.

So you are providing the python package and library path to environment specific location, in order to make it available environment try using the anaconda/bin and lib path. Can't make it as a comment due to low reputation.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!