如何使用 - onefile 编译 PyInstaller 的 .py 文件时指定 .spec 文件strong>和 - 没有控制台选项?
答案 0 :(得分:2)
尝试这样的事情:
C:\Python27\python.exe C:\Python27\Lib\site-packages\PyInstaller\main.py --onefile --noconsole main.spec
答案 1 :(得分:0)
PyInstaller 将生成一个.spec
文件。您可以先针对一个文件应用程序运行它,然后为以后的运行参考已编辑的.spec
文件
使用一个文件应用程序:
pyinstaller main.py
注意:这将覆盖main.spec
,因此请勿在以后的运行中使用它
使用.spec
文件:
pyinstaller main.spec