AttributeError: 'AxesSubplot' object has no attribute 'add_geometries'
时间: 2023-11-04 15:59:01 浏览: 234
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误是因为在当前版本的matplotlib中,AxesSubplot对象没有"add_geometries"属性。可能是因为你的代码中使用了一个过时的方法或属性。你可以尝试更新你的matplotlib版本来解决这个问题。请按照以下步骤操作:
1. 打开pycharm设置。
2. 点击Python解释器。
3. 找到并删除当前的matplotlib库。
4. 点击加号添加最新版本的matplotlib。
5. 保存并重新运行你的代码。
这样,你的代码应该能够正常运行了。
阅读全文