python – subprocess似乎无法在pyinstaller exe文件中工作

当我使用pycharm运行时,我在tkinter中的程序运行良好,

当我使用pyinstaller创建exe文件时pyinstaller -i“icon.ico”-w -F script.py我没有错误.

我将script.exe粘贴到与我的script.py相同的文件夹中,并且在运行之后我认为步骤在哪里是suprocess他没有回答,因为我在subroces行及其工作之前有打印.

谁知道为什么?

这是子进程的行:

import subprocess
from subprocess import Popen, PIPE
 s = subprocess.Popen([EXE,files,'command'],shell=True, stdout=subprocess.PIPE)

编辑:
同样的问题:

s = subprocess.check_output([EXE,files,'command'],shell=True, stderr=subprocess.STDOUT)

最佳答案 您可以在-w模式或–windowed中编译代码,但是您还必须分配stdin和stderr.

所以改变:

s = subprocess.Popen([EXE,files,'command'],shell=True, stdout=subprocess.PIPE)

至:

s = subprocess.Popen([EXE,files,'command'],shell=True, stdout=subprocess.PIPE, stderr=sbuprocess.PIPE, stdin=subprocess.PIPE)
点赞