试了很多方式,包括升级或降级pydantic模块的版本,但是打包时依然提示
File "C:\Users\xxxxx\AppData\Roaming\Python\Python39\site-packages\PyInstaller\utils\hooks_init_.py",
line 285, in get_module_attribute
raise AttributeError(f"Failed to retrieve attribute {attr_name} from module {module_name}") from e
AttributeError: Failed to retrieve attribute compiled from module pydantic
后来仔细分析了一下报错的信息,感觉这个和PyInstaller有关,因此尝试一下升级PyInstaller再打包,发现依然不行
看来pyinstaller的最新版本并没有修复这个问题,因此我们点进报错处的代码,发现这里应该是要读pydantic的版本,但是2.1.0之后版本的pydantic是通过version读版本的,因此必然没有compiled属性,所以修改一下这里的代码再打包,就不会再报错了