Import OpenCV on jupyter notebook

前端 未结 5 1075
心在旅途
心在旅途 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:38

    In the Anaconda Navigator. Launch conda console as below.

    In the console: run conda install opencv

    0 讨论(0)
  • 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

    0 讨论(0)
  • 2020-12-11 07:48

    You should open the anaconda prompt and then type:

    conda install opencv 
    

    It should work.

    0 讨论(0)
  • 2020-12-11 07:50

    It seems like you run jupyter not from conda environment, that has opencv module installed. try to do this: conda activate <your environment>

    conda install jupyter
    jupyter notebook
    

    after that try to "import cv2"

    0 讨论(0)
  • 2020-12-11 07:53

    You have installed openCV in Python running on your Terminal, not into the working environment which Jupyter Notebooks is running from.

    Whilst in Terminal write:

    py -m pip install opencv-python
    

    When you use pip list

    You should see opencv-python 3.4.3.18

    More information here.

    0 讨论(0)
提交回复
热议问题