tensorboard 2.10.0 requires protobuf<3.20,>=3.9.2, but you have protobuf 3.20.3 which is incompatible
时间: 2024-05-02 12:16:17 浏览: 865
protobuf的安装与使用–版本不兼容问题
这个问题是因为你安装的 protobuf 版本过高,与 tensorboard 所需的 protobuf 版本不兼容。你可以尝试以下两种解决方案之一:
1. 降低 protobuf 版本:使用 pip 卸载当前的 protobuf,然后安装 3.9.2 版本的 protobuf:
```
pip uninstall protobuf
pip install protobuf==3.9.2
```
2. 更新 tensorboard 版本:如果你的 tensorboard 版本比较老,可以尝试升级到最新版本,最新版本可能支持更高版本的 protobuf:
```
pip install --upgrade tensorboard
```
希望这些解决方案可以帮助你解决问题。
阅读全文