pyinstaller打包exe时subprocess无效的解决方法

软硬件环境

Windows 10

Python 3.5.2

PyQt5

pyinstaller

前沿

使用pyinstaller打包exe,最近在打包包含subprocess.Popen时发现,加上参数—noconsole时产生的exe文件在运行的时候,进程并没有运行。经过一番google,问题得以解决,现将解决方法记录一下,形成此文。

subprocess使用

我这里需要利用subprocess.Popen创建一个进程去执行一个命令行操作,

mProcess = subprocess.Popen(cmd,stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)


pyinstaller打包操作命令如下

pyinstaller -F -w xxx.py

打包后生成的exe,可以运行,不过查看进程并没有如预期正确地工作。

解决方法

在创建进程时,加上startupinfo参数,如下

si = subprocess.STARTUPINFO()

si.dwFlags|= subprocess.STARTF_USESHOWWINDOW

mProcess=subprocess.Popen(cmd,stdin=subprocess.PIPE,stdout=subprocess.PIPE,stderr=subprocess.PIPE,startupinfo=si)

问题完美解决,具体可以参考下 http://blog.csdn.net/djstavav/article/details/61629851

你可能感兴趣的:(pyinstaller打包exe时subprocess无效的解决方法)