I have tow programs packed by pyinstaller2.0 running on windows, and I want one 
of them start by another and detach from it.

I used this code to start a detached subprocess:

    subprocess.Popen(command, stdin=None, stdout=None, stderr=None, 
close_fds=True,
                    creationflags=0x00000008)

It works well when call every program from a python scripy, and call a normal 
program from  program which pyinstaller packed, but it doesn't work when call a 
pyinstaller packed one from other programs pyinstaller packed.

Is there something I missed? Something like process environments goes wrong?

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/pyinstaller/-/4SlAK_869TUJ.
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.

Reply via email to