python ver:3.10
安装有:pyside6
pyinstaller 的 spec 文件为:
[code]
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(
['
run_delivery.py'],
pathex=['D:\\Soft\\Python3\\Lib'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='run_delivery',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
version='src\\file_version_info.txt',
icon='src\\AppICO.ico',
)
[/code]
在 Windows11 下打包为单文件(文件夹也尝试过),然后去 Windows 8.1 / Windows server 2012 R2 上运行,报错为:
[img]
https://s3.bmp.ovh/imgs/2022/05/05/0aaf9a798789f461.png[/img]
我尝试将 plugins 目录 copy 到运行目录,貌似没啥用,包括增加系统 path 也没啥用。
求教诸位大神,如何解决这个问题呢?。。。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/851019
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.