6. 在cmd窗口键入:python set_version.py file_version_info.txt youfilename.exe即可 方法二: 在打包的时候就已经准备好了版本信息文件:file_version_info.txt 打包时用此参数--version-file 即可:pyinstaller --version-file file_version_info.txt test.py 最后打包成exe,可以右键点击exe文件查看详细信息,可以...
之后你打包就直接使用 pyinstaller xx.spec,不再用写冗长的命令了。 那file_verison_info.txt 又长什么样子呢? # UTF-8# # For more details aboutfixedfile info'ffi'see: # http://msdn.microsoft.com/en-us/library/ms646997.aspxVSVersionInfo( ffi=FixedFileInfo( # filevers and prodvers should be ...
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...
第七步:生成spec文件 我们在这一步添加各种参数,如 -D -c --version-file=file_version_info.txt 这些,生成spec文件: pyi-makespec -D -c --version-file=file_version_info.txt main.py 1. 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 : ...
二:添加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 ...
pyi-set_version 组件读取由 pyi-grab_version 写入的版本文本文件,将其转换为版本资源,并将该资源安装到指定的 executable_file 中。 对于高级用途,请检查由 pyi-grab_version 编写的版本文本文件。你会发现它是创建一个 VSVersionInfo 对象的 Python 代码。VSVersionInfo 类的定义可以在 PyInstaller 发行文件夹中...
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( ...
–version-file file_version_info.txt :表示将标准版本信息文件的内容赋给exe文件的属性 更多请键入 pyinstaller -h 来查看参数 输出结果 dist目录下是exe文件,可单独执行。 3. (可选)打包程序时键入版本信息 在ip.py所在目录下按以上示例创建一个版本信息文件:file_version_info.txt 文本文件。
其中grab_version.py的位置在pyinstaller 根目录下的utils目录下。 2.修改产生的版本信息文件就在程序的当前目录下,更改好版本信息文件之后就可以开始使用了 python pyinstaller.py --version-file=ver_info.txt --onefile --windowed main.py 3.选取一个喜欢.ico文件,作为自己软件的图标,打包进exe中 ...