pyinstaller打包无黑框
时间: 2023-06-21 17:12:54 浏览: 141
Pyinstaller 打包发布经验总结
5星 · 资源好评率100%
PyInstaller 打包后出现黑框的原因是因为在 Windows 系统下,控制台应用程序会自动打开命令行窗口。
要去掉黑框,可以使用 PyInstaller 提供的 `--noconsole` 选项。在打包时加上这个选项即可,例如:
```
pyinstaller --noconsole your_script.py
```
这样打包出来的程序就不会显示黑框了。
阅读全文