本帖最后由 Arcticlyc 于 2024-11-8 14:07 编辑
我在 python 代码中导入了 win32com.client,并且使用了其中的 GetObject 方法,但是用 nuitka 打包后报错:
[Asm] 纯文本查看 复制代码 AttributeError: module 'win32com.client' has no attribute 'GetObject'
为此,我修改了打包命令:
[Asm] 纯文本查看 复制代码 python -m nuitka --mingw64 --onefile --show-progress --show-memory --enable-plugins=upx --enable-plugin=tk-inter ... --include-package=win32com.client main.py
仍然出现上述错误,接下来我修改命令为:
[Asm] 纯文本查看 复制代码 python -m nuitka --mingw64 --onefile --show-progress --show-memory --enable-plugins=upx --enable-plugin=tk-inter ... --include-package=win32com main.py
[Asm] 纯文本查看 复制代码 python -m nuitka --mingw64 --onefile --show-progress --show-memory --enable-plugins=upx --enable-plugin=tk-inter ... --include-package=win32com --include-package=win32com.client main.py
[Asm] 纯文本查看 复制代码 python -m nuitka --mingw64 --onefile --show-progress --show-memory --enable-plugins=upx --enable-plugin=tk-inter ... --include-package=win32com.client --include-package=win32com main.py
打包过程中直接报错:
[Asm] 纯文本查看 复制代码 nuitka.Errors.NuitkaOptimizationError:
duplicate locals name
globals_win32com$client
module_dict
win32com.client
win32com.client
The above information should be included in a bug report.
Nuitka-Reports: Compilation crash report written to file 'nuitka-crash-report.xml'. Please include it in your bug
Nuitka-Reports: report.
请问如何解决我的问题。 |