在使用intellij idea时,当通过如下方式使用时,matplotlib.pyplot导入报错,使用方法如下:
代码语言:javascript复制import matplotlib.pyplot as plt
# 创建一个图形和一个子图
fig, ax = plt.subplots()
其中,会出现诸如module ‘matplotlib.pyplot’ has no attribute 'switch_backend’等问题。
解决方案
更好更低版本的matplotlib即可。
步骤一:卸载原有matplotlib:
代码语言:javascript复制pip3 uninstall matplotlib
步骤二:安装指定低版本的matplotlib::
代码语言:javascript复制pip3 install matplotlib==2.2.3
当然,也可以将上述版本信息配置到requirements.txt配置文件当中。
另外还有一种错误原因,就是自定义package中有matplotlib,在引用时应用了自定义的Matplotlib而不是类库中的。