Previously I asked a similar question: cx_Freeze unable fo find mkl: MKL FATAL ERROR: Cannot load mkl_intel_thread.dll
But now I have a subtle difference. I want to run the program without installing anaconda, just within a cmd.exe
terminal, but it seems I am doing something wrong or that it is not possible.
After generating my application with python setup.py bdist_msi
using cx-freeze
, I am able to install and then run it within an anaconda environment, but if I simply open a cmd.exe
terminal and run it, I get
INTEL MKL ERROR: The specified module could not be found. mkl_intel_thread.dll.
Intel MKL FATAL ERROR: Cannot load mkl_intel_thread.dll.
However, when running
where mkl_intel_thread.dll
the dll is found, so I think this means it's registered in the system (I am more used to use Linux, so may be I am wrong).
How could I solve this problem?