The error means that the program could not find the mkl library files on its way to the library, what you need to find it.
I had a problem running matplotlib scripts on windows with numpy + mkl, and I fixed them by copying files starting with "mkl_" to site-packages/numpy/core to my python.exe root.
I am not familiar with the compiled python program, but the idea should be the same. Since you had this error, I assume you are using mkl version packages. You need to find out where the .exe is trying to load the libraries from (maybe the same path where the executable is), and copy the entire mkl dll of any package. Or maybe something like “compilation options” that allows you to customize the path, etc.
Hope this helps you.
source share