1. 程式人生 > 其它 >python應用程式打包教程

python應用程式打包教程

需要用到:pyinstaller外掛

pyinstaller 打包exe檔案命令:

pyinstaller -F --icon=G:\cat.ico --version-file=G:\version.txt G:\shop\Python-project\refund_goods.py

檔案版本模板:version.txt

VSVersionInfo(

ffi=FixedFileInfo(

filevers=(1, 0, 91, 1),

prodvers=(1, 0, 92, 1),

mask=0x3f,

flags=0x0,

OS=0x40004,

fileType=0x1,

subtype=0x0,

date=(0, 0)

),

kids=[

StringFileInfo(

[

StringTable(

'040904B0',

[StringStruct('CompanyName', '公司名稱'),

StringStruct('FileDescription', '版本描述'),

StringStruct('FileVersion', '1.0.93.1 版本號'),

StringStruct('InternalName', 'mainX 內部名稱'),

StringStruct('LegalCopyright', 'www.cnblogs.com/balian. All rights reserved. 法律版權'),

StringStruct('OriginalFilename', 'AmAin.eXE 原始檔名'),

StringStruct('ProductName', 'Running on MS Windows 產品名稱'),

StringStruct('ProductVersion', '1.0.94.1 產品版本')])

]),

VarFileInfo([VarStruct('Translation', [1033, 1200])])

]

)