dir = 'C:myprogram.exe' import os os.startfile(dir) os.system(dir) import subprocess subprocess.Popen([dir]) subprocess.call(dir)