I am working on a Win10 PC with Python 3.5.4 64-bit and currently I am testing a jupyter notebook inside virtualenv.
The following code causes the error:
from sklearn.datasets import fetch_mldata
mnist = fetch_mldata("MNIST original")
mnist
This is the complete error message:
ImportError: DLL load failed: Das angegebene Modul wurde nicht gefunden.
Or in English:
ImportError: DLL load failed: The specified module could not be found.
So far I've found several Stackoverflow threads and other posts with the same error message and all kind of Python packages. Usually a mixture of x86 and x64 installations (e.g. here or here) gets blamed, but everything seems to be fine with my installation. I already fully reinstalled Python, but I still get the same error...
Is there any way to check what might cause this error?