문제

I wrote an executable python program using PyInstaller but I am getting a runtime error:

Error

The app runs perfectly but it always has this error come up. I want to get rid of this problem.

I followed some advice from Stack Overflow and used dependency walker to find issues. In the log section I am getting output like this:

Where a bunch of .dll files have a red x86 while PyInstaller has a black x64. Does this have something to do with 32 bit and 64 bit CPUs? Do I need to update my .dll files to 64 bit?

도움이 되었습니까?

해결책

It looks like you have opened a 64-bit executable with the 32-bit version of Dependency Walker. If you re-open the file with the 64-bit version of Dependency walker it should get rid of your second error. And should point you to your first error which is a missing MS CRT DLL.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top