how could we install opencv on anaconda?

后端 未结 4 2033
夕颜
夕颜 2020-12-30 06:25

I tried to install OpenCV on Anaconda

pip install cv2
pip install opencv
conda install opencv
conda install -c https://conda.binstar.org/jjhelmus opencv
         


        
4条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-30 07:06

    Run the following command:

    conda install -c https://conda.binstar.org/menpo opencv
    

    I realized that opencv3 is also available now, run the following command:

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

    Edit on Aug 18, 2016: You may like to add the "menpo" channel permanently by:

    conda config --add channels menpo
    

    And then opencv can be installed by:

    conda install opencv(or opencv3)
    

    Edit on Aug 14, 2017: "clinicalgraphics" channel provides relatively newer vtk version for very recent python3

    conda install -c clinicalgraphics vtk
    

提交回复
热议问题