我正在使用'Popen'运行子进程。我需要阻塞直到该子进程完成,然后读取其输出。
p = Popen(command, stdin=PIPE, stdout=PIPE, stderr=PIPE, encoding="utf-8")
p.communicate():
output = p.stdout.readline()
print(output)
我收到一个错误
ValueError: I/O operation on closed file.
子进程完成后如何读取输出,我不想使用poll(),因为子进程需要时间,而且无论如何我都需要等待其完成。
答案 0 :(得分:1)
这应该有效:
p = Popen(command, stdin=PIPE, stdout=PIPE, stderr=PIPE, encoding="utf-8")
output, error = p.communicate()
print(output)
if error:
print('error:', error, file=sys.stderr)
但是,最近subprocess.run()
是首选:
p = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
print("output:", p.stdout)
if proc.stderr:
print("error:", p.stderr, file=sys.stderr)
答案 1 :(得分:0)
使用subprocess.check_output
。它返回命令的输出。