AttributeError: module 'google.protobuf' has no attribute '__version__'
时间: 2023-11-10 22:07:11 浏览: 230
这个错误通常是因为 protobuf 版本过低导致的,可以尝试升级 protobuf 版本来解决问题。可以使用以下命令升级 protobuf:
```
pip install --upgrade protobuf
```
如果还是无法解决问题,可以尝试升级 google-auth 和 google-api-python-client 两个库。
阅读全文