压缩exe python

import subprocess
# 使用UPX压缩生成的可执行文件
upx_command = "upx -9 --force 1.exe"  # -9 是最高压缩率
subprocess.run(upx_command, shell=True)

print("可执行文件已生成并压缩。")

需要安装upx

https://github.com/upx/upx/releases/

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注