AttributeError: module 'matplotlib.pyplot' has no attribute 'saving'
时间: 2023-10-30 07:01:29 浏览: 158
AttributeError: module 'tensorflow.compat.v1' has no attribute '
您好!对于您的问题,它是由于 Matplotlib 版本较低所导致的。
在较旧的版本中,Matplotlib 的保存功能是通过 `saving` 模块来实现的。但是在较新的版本中,Matplotlib 将保存功能整合到了 `pyplot` 模块中。
为解决这个问题,您可以尝试更新 Matplotlib 到最新版本。可以通过运行以下命令来更新 Matplotlib:
```
pip install --upgrade matplotlib
```
如果您使用的是 conda 环境,可以使用以下命令:
```
conda update matplotlib
```
更新完毕后,您应该可以使用 `pyplot` 模块的保存功能了。请注意,保存函数为 `savefig()`,而不是 `saving`。
希望能帮到您!如果您有任何其他问题,请随时提问。
阅读全文