I'm afraid Python is not the language for anything that small. PyInstaller has to include a minimal working Python installation inside your program which is around 20MB - and that's before your code goes in it. Using the
--onefileoption allows it to compress some of it so you can get down to about 7MB. If you're determined, either translate your script in C++ or maybe try Nuitka which tries to do that automatically. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/35135ba6-613d-4465-8e6e-8192079c428co%40googlegroups.com.
