如何将多个.py文件与Py2Exe组合成一个.exe文件
作者:互联网
我使用PyQt为我的程序制作一个GUI,但它有多个.py文件,其中2个是类,一个启动代码.所以我想知道,我如何将它们组合成一个完整的程序?
这是我将要合并的所有.py文件的下载链接:http://www.multiupload.com/CJDL639CTH
解决方法:
Shed Skin可以将您的程序转换为快速可执行文件,但这可能对您的程序不起作用.
使用py2exe和a setup.py like this,您可以轻松地将Windows中的Python 2.x代码转换为只有一个额外文件的可执行文件,这与cx_Freeze的11个文件的平面输出不同.对于Python 3,请使用cx_Freeze或py2exe.
关键部分是:
options={
'py2exe': {
'compressed': 2,
'optimize': 2,
'includes': includes,
'excludes': excludes,
'packages': packages,
'dll_excludes': dll_excludes,
'bundle_files': 1, # 1 = .exe; 2 = .zip; 3 = separate
'dist_dir': 'dist', # Put .exe in dist/
'xref': False,
'skip_archive': False,
'ascii': False,
'custom_boot_script': '',
#'unbuffered': True, # Immediately flush output.
}
},
zipfile=None, # Put libs into .exe to save space.
标签:py2exe,python,pyqt 来源: https://codeday.me/bug/20190927/1824139.html