On Tuesday 8 May 2012 at 21:32, Martin Zibricky wrote: > [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. > > Martin is correct, those are the two most important reasons.
I think there are two different steps: one is making a bundle without libpython (and the standard library); another is trying to make it work with any system libpython >= than the version originally used. I wouldn't conflate the two things.-- Giovanni Bajo -- 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.
