I’ve used Python’s subprocess.call() before, but how do you get it to act like the Windows START /WAIT myprogram?
I’ve tried subprocess.call(['start', '/wait', 'myprogram.exe']) but it can’t find start and neither can I.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to wait for a spawned process, then use
subprocess.Popenand then eitherwaitorcommunicate.startis AFAIR a shell construct, not a real exec (so you’d have to useshell = True— but that still wouldn’t do what you want).