1、用pyinstall -Fw xxxx -i i.ico打包用wxpython设计得程序可避免出现dos窗口,于是设计了一个程序,用了subprogress.run命令!
2、runs=subprogress.run('adb.exe devices',shell=True,stdout=subprogress.PIP,stderr=subprogress.PIP)
runss=str(runs.stderr).decode()
print(runss) 或是把runss赋值给文本框。
3、运行,可输出adb devices命令在屏幕显示的内容,也可把这输出的内容赋值给变量,如果有其它命令还可以用此办法实现命令回显!
4、但在输出为exe时,pyinstaller -Fw xxxx i i.ico,有了最终的exe,运行却发现subprogress.run函数几乎没运行,也没有adb devices的回显!似乎这个-w把所有依赖dos的命令全屏蔽了,不用这个-w一启动程序就是个黑窗口,这多矛盾,这该如何处理的?