hello fellow programmers, having spot of trouble getting python .exe function properly. using anaconda 3 , latest version of pyinstaller, , code has nothing odd going on when run .py, sake of distribution need have ".exe". whenever try run .exe error:
intel mkl fatal error: cannot load mkl_intel_thread.dll.
and closes. again, not having problem if run python code in .py format same command window.
any appreciated, thank you!
the error means program couldn't find mkl library files under library path, need make find.
i had issue when running matplotlib scripts on windows numpy+mkl, , got fixed copying files start "mkl_" in site-packages/numpy/core
python.exe root.
i'm not familiar compiled python program idea should same. since had error assume using mkl version packages. need figure out .exe tries load libraries from(could same path executable located), , copy mkl dll's of package there. or there "compile options" allows configure path etc.
hope helps you.
Comments
Post a Comment