AttributeError: module 'matplotlib.rcsetup' has no attribute '_validators'
时间: 2023-08-27 07:16:13 浏览: 411
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是因为你的Matplotlib版本与其他库不兼容导致的。解决这个问题的方法是更新或降级Matplotlib库。你可以尝试以下几种方法:
1. 更新Matplotlib库:
```
pip install --upgrade matplotlib
```
2. 降级Matplotlib库:
```
pip install matplotlib==3.4.3
```
3. 如果你使用Anaconda或Miniconda,可以尝试使用conda来更新或降级Matplotlib:
```
conda install -c conda-forge matplotlib
```
请注意,根据你的项目和其他依赖库的要求,可能需要选择适合的Matplotlib版本。
阅读全文