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.
3 answers ( 0 marked as helpful)
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
Hey,
I had the same problem , eventhough I had intalled numpy.
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