Last answered:

14 Oct 2021

Posted on:

02 Jul 2021

0

module not found error:no module named numpy even after importing opencv

I keep getting module numpy not found error even though i have followed the steps and installed opencv in my new python environment. I am attaching the screenshot for further clarity.image

3 answers ( 0 marked as helpful)
Instructor
Posted on:

12 Jul 2021

0

Hi Pankaj!
Great to have you in the course and thanks for reaching out!
NumPy is not part of the Python standard library and has to be installed separately.
Please open Anaconda Prompt (or Terminal if you are using Mac) and execute:

pip install numpy

Then try again.
Hope this helps.
Best,
Ivan

Posted on:

10 Oct 2021

0

Hey,
I had the same problem , eventhough I had intalled numpy. imageimage

Posted on:

14 Oct 2021

0

Hello there!
I faced the same problem and came across this page on Stack Overflow: https://stackoverflow.com/questions/51922364/python3-modulenotfounderror-no-module-named-numpy
Hope you'll find it useful

Submit an answer