解决‘NoneType‘ object has no attribute ‘message_types_by_nam

作者: zengde 分类: 笔记 发布时间: 2023-12-14 08:50

这个错误通常与protobuf库版本不匹配有关。在较旧的protobuf版本中,没有message_types_by_name属性,而在较新的版本中有。可以更新protobuf库,或者降低代码中所使用的protobuf库的版本。

pip install --upgrade protobuf