To launch programs from my Python-scripts, I\'m using the following method:
def execute(command): process = subprocess.Popen(command, shell=True, stdout=s
In Python 3.6 I used this:
import subprocess cmd = "command" output = subprocess.call(cmd, shell=True) print(process)