Arcticlyc 发表于 2024-11-8 11:34

nuitka 打包 win32com.client 问题

本帖最后由 Arcticlyc 于 2024-11-8 14:07 编辑

我在 python 代码中导入了 win32com.client,并且使用了其中的 GetObject 方法,但是用 nuitka 打包后报错:
AttributeError: module 'win32com.client' has no attribute 'GetObject'
为此,我修改了打包命令:
python -m nuitka --mingw64 --onefile --show-progress --show-memory --enable-plugins=upx --enable-plugin=tk-inter ... --include-package=win32com.client main.py

仍然出现上述错误,接下来我修改命令为:
python -m nuitka --mingw64 --onefile --show-progress --show-memory --enable-plugins=upx --enable-plugin=tk-inter ... --include-package=win32com main.py
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
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
打包过程中直接报错:
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.
请问如何解决我的问题。

VanYun 发表于 2024-11-8 12:31

我的项目也使用有win32com.client,不过我打包的命令是:--include-module=win32con
页: [1]
查看完整版本: nuitka 打包 win32com.client 问题