我有一個命令,以從Python程序CANT運行與subprocess.Popen的處理()
python test.py arg1 arg2
運行。如果我運行它使用
os.system("python test.py arg1 arg2")
它運行。
我想使用subprocess.Popen(),但是當我這樣做
subprocess.Popen("python test.py arg1 arg2")
它提供了以下錯誤
raise child_exception
OSError: [Errno 2] No such file or directory
任何想法?
非常感謝
感謝您的回答...它的工作原理...但上面的一個適合我的要求最好 – Shan 2012-03-17 09:46:01