how to call a program from python without waiting for it to return
Posted
by maranas
on Stack Overflow
See other posts from Stack Overflow
or by maranas
Published on 2010-04-08T17:23:13Z
Indexed on
2010/04/08
17:33 UTC
Read the original article
Hit count: 278
is there a way to call a program from python without waiting for it to return? i created a script which copies a program to a directory and runs that program. but when i call the program from python, the python script does not exit until the program i launched exits. i have tried os.system and Popen. is there another way to do this?
© Stack Overflow or respective owner