从 python 创建 EXE 导致打开命令提示符
Creating an EXE from python results in command prompt opening
这是我第一次尝试使用 PyQT5 和 pyinstaller。我正在使用一个简单的命令通过单击按钮启动 httpd.exe
我使用的命令是
os.system(cur_dir+"//htdocs//api//taskkill /f /im httpd.exe")
它以最小化方式启动 apache 网络服务器并且工作正常。 Apache 启动并且没有打开命令提示符 window。当我通过 pyinstaller 创建 exe 时,单击此按钮时会出现命令提示符 window 闪烁。有没有办法阻止命令提示符 window 打开?我正在使用 pyinstaller --onefile --windowed
使用 --noconsole 选项摆脱命令提示符 window。
pyinstaller --onefile --windowed --noconsole
这是我第一次尝试使用 PyQT5 和 pyinstaller。我正在使用一个简单的命令通过单击按钮启动 httpd.exe
我使用的命令是
os.system(cur_dir+"//htdocs//api//taskkill /f /im httpd.exe")
它以最小化方式启动 apache 网络服务器并且工作正常。 Apache 启动并且没有打开命令提示符 window。当我通过 pyinstaller 创建 exe 时,单击此按钮时会出现命令提示符 window 闪烁。有没有办法阻止命令提示符 window 打开?我正在使用 pyinstaller --onefile --windowed
使用 --noconsole 选项摆脱命令提示符 window。
pyinstaller --onefile --windowed --noconsole