[Solved] - How to solve? - ImportError: cannot import name 'multiarray'




Do you face this error even if you have numpy installed correctly?

I've faced the same then I found a solution for that, you need to remove/purge the library and need to reinstall it again like following commands!

sudo -H python3.6 -m pip uninstall numpy
sudo apt purge python3-numpy
sudo -H python3.6 -m pip install --upgrade pip
sudo -H python3.6 -m pip install numpy


In my case it was python 3.6, if you are using python 3.7 or any other version you can use your current version in which you are facing this error,

Hit like or comment if this blog has solved your problem.

Have a great time.

Enjoy coding with python

Comments