使用执行python脚本隐藏控制台

时间:2019-02-07 04:39:10

标签: python python-3.x pyinstaller

我正在尝试使用pyinstaller在Windows 10上使用pyqt5模块编译在python 3中构建的python脚本,该脚本会在运行时隐藏窗口。

要编译我的脚本,我执行了以下命令:

pyinstaller --onefile --icon=app.ico --clean --noconsole app.py

但是我得到的可执行文件没有再工作,所以我通过以下命令编译了脚本:

 pyinstaller --onefile -w --icon=app.ico  app.py

如果使用-console / -w /-windowed 参数,则输出可执行文件仍然无法工作。

如何使我的可执行文件在没有控制台的情况下运行?

这是我尝试执行的脚本

import threading
import subprocess
import sys
import time

f = open("build\\eco.txt", "x")
f = open("build\\sou.txt", "x")

def run_process(path):
    cmd = 'python %s' % path
    process = subprocess.Popen(cmd, stdout=subprocess.PIPE)
    for line in iter(process.stdout.readline, ''):
        sys.stdout.write(line)


t1 = threading.Thread(target=run_process, args=('py1.py',))
t2 = threading.Thread(target=run_process, args=('py2.py',))
t3 = threading.Thread(target=run_process, args=('py3.py',))
t4 = threading.Thread(target=run_process, args=('py4.py',))
t5 = threading.Thread(target=run_process, args=('py5.py',))


#start
t1.start()
t2.start()
t3.start()
t4.start()
t5.start()

# Waiting
t1.join()
t2.join()
t3.join()
t4.join()
t5.join()

谢谢

1 个答案:

答案 0 :(得分:2)

传递 -w或--windowed或--noconsole 标志以隐藏控制台。

通过将自动py安装到exe ,尝试使用GUI pyinstaller。它使您更易于编译脚本。

pip install auto-py-to-exe