在打包的时候就已经准备好了版本信息文件:file_version_info.txt 打包时用此参数--version-file 即可:pyinstaller --version-file file_version_info.txt test.py 最后打包成exe,可以右键点击exe文件查看详细信息,可以看到有文件版本信息。 3. 运行pyinstaller来打包exe 一般用pyinstaller打包exe会用到-F参数(表示打包...
StringFileInfo( [ StringTable( u'080404b0', [StringStruct(u'CompanyName', u'Tencent'),# 公司,鼠标悬浮exe会显示 StringStruct(u'FileDescription', u'WeChat'),# 文件说明,鼠标悬浮exe会显示,也会显示在 详细信息-文件说明 StringStruct(u'FileVersion', u'3.6.0.0'),# 没见哪里显示 StringStruct(u...
其中的EXE里有个version="file_verison_info.txt", 这一句是我自己添加的,本来没有。这一句就是来指定版本信息的。 之后你打包就直接使用 pyinstaller xx.spec,不再用写冗长的命令了。 那file_verison_info.txt 又长什么样子呢? # UTF-8# # For more details aboutfixedfile info'ffi'see: # http://msdn...
file_version_info.txt是一个文本文件,需要放在和启动入口相同目录下,会根据这个文件生成版本信息,该文件说明见下: # UTF-8 VSVersionInfo( ffi=FixedFileInfo( #filevers和prodvers应该始终是包含四个项的元组:(1、2、3、4),将不需要的项设置为0 filevers=(21, 10, 27, 0), # 文件版本***,鼠标悬浮exe...
准备好版本信息文件:file_version_info.txt 版本信息文件可以通过pyinstaller自带工具(pyi-grab_version)获取: 命令:pyi-grab_version.exe xxxx.exe file_version_info.txt 其中xxxx.exe是有软件版本信息的执行文件。 这样可以通过编辑file_version_info.txt,获得自己的版本信息文件 ...
–version-file file_version_info.txt :表示将标准版本信息文件的内容赋给exe文件的属性 更多请键入 pyinstaller -h 来查看参数 输出结果 dist目录下是exe文件,可单独执行。 3. (可选)打包程序时键入版本信息 在ip.py所在目录下按以上示例创建一个版本信息文件:file_version_info.txt 文本文件。
pyi-set_version version_text_file executable_file pyi-set_version 组件读取由 pyi-grab_version 写入的版本文本文件,将其转换为版本资源,并将该资源安装到指定的 executable_file 中。 对于高级用途,请检查由 pyi-grab_version 编写的版本文本文件。你会发现它是创建一个 VSVersionInfo 对象的 Python 代码。VS...
pyi-grab_version yourprogramname.exe 3.当命令执行完成后,会在目录下生成一个file_version_info.txt名称的文件。 # UTF-8## For more details about fixed file info 'ffi' see:# http://msdn.microsoft.com/en-us/library/ms646997.aspxVSVersionInfo( ...
二:添加myVersionInfo信息 # UTF-8 # # For more details about fixed file info 'ffi' see: # http://msdn.microsoft.com/en-us/library/ms646997.aspx VSVersionInfo( ffi=FixedFileInfo( # filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4) # Set not needed ...
python pyinstaller.py --version-file=ver_info.txt --onefile --windowed main.py 3.选取一个喜欢.ico文件,作为自己软件的图标,打包进exe中 pyinstaller --version-file=D:\pycharmProject\testerclub\src\version\f_ver.txt -i D:\pycharmProject\testerclub\src\icon\testerclub_64px.ico -w -F tester...