cannot import name 'builder' from 'google.protobuf.internal' (F:\Anaconda3\lib\site-packages\google\protobuf\internal\__init__.py)
时间: 2023-06-30 21:18:10 浏览: 486
caffe python error: No module named google.protobuf.internal
5星 · 资源好评率100%
这个错误通常是由于安装的 protobuf 版本过低引起的。可以尝试更新 protobuf 到最新版本来解决这个问题。可以使用以下命令来更新 protobuf:
```
pip install --upgrade protobuf
```
如果更新 protobuf 后仍然存在问题,可以尝试卸载 protobuf 并重新安装:
```
pip uninstall protobuf
pip install protobuf
```
如果问题仍然存在,请检查您的环境变量是否正确设置。
阅读全文