首页 > 解决方案 > 在 python 中安装旧版本的 Matplotlib

问题描述

我在 python 中安装了一个 matplotlib 3.2.1 库。我想安装旧版本(3.1.0)。我应该在 anaconda 提示符中使用什么语法?

使用以下语法安装最新版本,我应该尝试什么?

pip install matplotlib

标签: pythonpandasmatplotlibinstallation

解决方案


尝试这个: pip install matplotlib==3.1.0


推荐阅读