Installing OpenCV with Conda and Spyder

后端 未结 2 1107
温柔的废话
温柔的废话 2021-01-19 13:03

I\'m having trouble installing OpenCV with Conda. I tried running numerous commands, none of which worked. For example, when I ran conda install -c anaconda opencv

2条回答
  •  庸人自扰
    2021-01-19 14:00

    The answer for this issue is updating Anaconda to the newest version:

    conda update -n base -c defaults conda
    

    then you can install opencv normally using:

    conda install -c conda-forge opencv
    

提交回复
热议问题