如何在PyInstaller中指定.spec文件

时间:2014-05-11 14:52:37

标签: python compilation pyinstaller

如何使用 - onefile 编译 PyInstaller .py 文件时指定 .spec 文件strong>和 - 没有控制台选项?

2 个答案:

答案 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