user15953688
user15953688

Reputation:

How to run CMD commands via subprocess.call() without opening CMD window?

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

Answers (1)

Ofir Gottesman
Ofir Gottesman

Reputation: 404

You can set shell=True when calling subprocess.call:

subprocess.call('insert command here', shell=True)

Upvotes: 2

Related Questions