AttributeError: module 'matplotlib.cbook' has no attribute '_rename_parameter'
时间: 2023-11-09 17:58:52 浏览: 191
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为 matplotlib 的版本问题导致的,可能需要升级或降级 matplotlib 版本来解决。
升级 matplotlib 可以使用以下命令:
```
pip install --upgrade matplotlib
```
降级 matplotlib 可以使用以下命令:
```
pip install matplotlib==<version>
```
其中 `<version>` 是指特定版本号。
阅读全文