On Wednesday 19 of November 2014 17:31:38 Hartmut Goebel wrote: > > env/bin/pyinstaller apps/openport_app.py --clean --onefile --name > > > > openport > > > > > > What is the reason for this, can I avoid it? > > If you are using --onefile, you will get an second process: Th first one > decompresses the data, the second one actually runs the code.
On Linux/OSX the two processes are used even for --onedir mode. Another reason is: First sets environment variables, etc, second runs the code. First does cleanup when the second exits. There is no way to avoid it. It is the way how it is designed. The first process does nothing when the second runs. -- 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 post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller. For more options, visit https://groups.google.com/d/optout.
signature.asc
Description: This is a digitally signed message part.
