Home > Software design >  Problem with making .exe from python file by PyInstaller
Problem with making .exe from python file by PyInstaller

Time:11-20

My script .py work perfectly, but .exe sadly doesn't work. Im running on newest PyInstaller.

Here is my script

I already tried everyting that i can think of here is options that i used:

Options used

CodePudding user response:

Not all python code can be compiled into a .exe.

CodePudding user response:

I was able to work around this issue by importing pywintypes into my script before win32print module.

  • Related