gpt4 book ai didi

python - 如何将 UPX 与 pyinstaller 一起使用?

转载 作者:太空狗 更新时间:2023-10-30 02:01:39 25 4
gpt4 key购买 nike

如何将 UPX 与 pyinstaller 一起使用?

我正在关注文档。

我已经下载了 UPX。

我的文件看起来像:

import csv
import selenium
import pandas

print('Hello')

然后我运行:

pyinstaller -F --upx-dir C:\Users\DD\Downloads\upx394w\upx394w\123\upx308w\upx.exe zz.spec

这不会影响文件的大小。

知道如何让它工作吗?

# -*- mode: python -*-

block_cipher = None


a = Analysis(['zz.py'],
pathex=['C:\\Users\\DA\\13\\14'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='zz',
debug=False,
strip=False,
upx=True,
runtime_tmpdir=None,
console=True )

最佳答案

需要指定 UPX 目录,而不是 UPX 可执行文件:

例如:

pyinstaller myfile.py --upx-dir=..\upx391w -y --onefile

关于python - 如何将 UPX 与 pyinstaller 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47730240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com