Reputation:
I'm able to run commands through CMD with Python with subprocess.call('insert command here')
but it opens the CMD window then closes right away. Is there a way to not open it at all?
Upvotes: 1
Views: 2252
Reputation: 404
You can set shell=True
when calling subprocess.call
:
subprocess.call('insert command here', shell=True)
Upvotes: 2