72983/importerror-numpy-core-multiarray-failed-to-import
Hi Guys,
I am trying to import the cv2 module in Jupyter Notebook. But It is showing me the below error.
import cv2 ImportError: numpy.core.multiarray failed to import
How can I solve this error?
Hi@akhtar,
You need to upgrade your Numpy library. Your current version is not compatible with your CV2 module. You can use the below-given command to upgrade Numpy.
$ pip install -U numpy
I hope this will help you.
Hi, @There,
If the solution has helped you to overcome the error, do upvote the answer and post your tech queries with us!!!
Happy Learning!!
I think that because of 'numpy' was a different version than 'numpy-base'
Could you please share your workaround and what are you trying to do, what exact error you are facing while importing?