ImportError: cannot import name 'builder' from 'google.protobuf.internal' (F:\Users\anaconda3\lib\site-packages\google\protobuf\internal\__init__.py)
时间: 2023-07-08 09:50:28 浏览: 119
builder.py
这个错误可能是因为你的protobuf版本不兼容所致。建议按照以下步骤解决:
1. 确认你的protobuf版本是否正确。可以使用以下命令检查protobuf版本:
```
pip show protobuf
```
确认protobuf版本是否是最新的,并且与你的代码兼容。
2. 如果protobuf版本正确,尝试卸载并重新安装protobuf:
```
pip uninstall protobuf
pip install protobuf
```
3. 如果以上方法都不行,可以尝试卸载protobuf并安装较低版本的protobuf:
```
pip uninstall protobuf
pip install protobuf==3.19.0
```
希望以上方法能够解决你的问题。
阅读全文