我正在使用子进程在 Python 脚本中调用外部程序。外部程序产生大量输出。我需要捕获这个程序的输出。当前的代码是这样的:
process = subprocess.Popen('cmd.exe', shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
process.stdin.write('gams "indus89.gms"\r\n')
while process.poll() != None:
line = process.stdout.readline()
print line
我收到此代码的错误是
该进程试图写入一个不存在的管道。
如果我使用以下代码:
process = subprocess.Popen('cmd.exe', shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
process.stdin.write('gams "indus89.gms"\r\n')
o, e = process.communicate()
print o
那么程序的输出不会被捕获。
我应该如何更改我的代码,以便在第三方程序运行时捕获它的输出?