[email protected] píše v Út 08. 05. 2012 v 20:51 +0200: > I've a question about how PyInstaller works: in the analysis phase > PyInstaller compile all the pure python module and I would like to > know why.
Because it speeds up the startup of the frozen application. You do not need to compile the python code. You just execute it. Probably another reason is that it hides source code in case you use pyinstaller to create a proprietary app. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
