ImportError: matplotlib is required for plotting when the default backend "matplotlib" is selected.
时间: 2023-05-17 08:06:03 浏览: 3264
numpy+matplotlib+scipy+部分问题的解决方法
这个错误提示意味着在使用 matplotlib 作为默认后端时,需要安装 matplotlib 库才能进行绘图。您可以通过运行以下命令来安装 matplotlib 库:
pip install matplotlib
如果您已经安装了 matplotlib 库,但仍然遇到此错误,请确保您的 matplotlib 版本与您的 Python 版本兼容。
阅读全文