ImportError: DLL load failed when importing Numpy installed in conda virtual environment

Uninstall and install numpy again.

pip uninstall numpy
pip install numpy

Then try import again, it should work. That is what I did

Leave a Comment