Import OpenCV on jupyter notebook

前端 未结 5 1080
心在旅途
心在旅途 2020-12-11 07:00

I tried installing OpenCV on Windows 10 using pip. I used this command- pip install opencv-contrib-python

After that when I tried importing cv2 on command prompt, it

5条回答
  •  星月不相逢
    2020-12-11 07:42

    Try this in anaconda prompt:

    First create a new enviorment :

    conda create -n opencv
    

    then :

    conda activate opencv
    

    then:

    conda install -c anaconda opencv
    

    source:youtube

提交回复
热议问题