'Axes3DSubplot' object has no attribute 'transSubfigure'
时间: 2023-06-23 18:46:17 浏览: 127
python3利用Axes3D库画3D模型图
这个错误通常是因为Matplotlib版本不兼容导致的。请确保你的Matplotlib版本高于3.4。如果你的版本足够高,请尝试使用以下命令清除缓存并重新安装Matplotlib:
```
pip uninstall matplotlib
pip cache purge
pip install matplotlib
```
如果问题仍然存在,请尝试更新你的Python版本,并重新安装Matplotlib。
阅读全文