Popen一无所获

时间:2019-06-07 21:01:35

标签: python-3.x

我正在尝试使用子进程Popen在python中运行带有某些参数的exe,但是代码当前没有输出任何内容,并且在我运行文件时CMD窗口没有打开。

我知道该命令在我手动将其粘贴到CMD中时会起作用,并且运行得很好,我的代码可能在做错什么呢?

import sys
import admin
import subprocess
from subprocess import Popen, PIPE

Path_2to3 = sys.executable[:-11] + "Scripts"
cmdCommand = '''cd "{}" && 2to3.exe -w "C:/Users/Desktop/bulk_converter/tests/test2.py"'''.format(Path_2to3)
process = subprocess.Popen(cmdCommand, stdout=subprocess.PIPE, shell=True)
output, error = process.communicate()
print(output, error)

print(output,error)

重现的值
b'' None

任何帮助/建议将不胜感激。

1 个答案:

答案 0 :(得分:0)

您也许还指定stderr应该重定向到管道:

stderr=subprocess.PIPE

您可能还想将timeout参数传递给communicate