AttributeError: module 'matplotlib' has no attribute 'axes'. Did you mean: 'axis'?
时间: 2023-06-22 11:36:34 浏览: 41
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常表示你在代码中使用了 `matplotlib.axes`,但是 `matplotlib` 模块中并没有 `axes` 这个属性。你可以尝试将 `axes` 改为 `axis`,或者检查一下你的 `matplotlib` 版本是否过低,如果是的话可以尝试升级到最新版本。另外,你也可以尝试重新安装 `matplotlib` 模块,以确保该模块正确安装。
阅读全文