关于python:如何降级Pandas版本

How to downgrade Pandas Version

我在我的Windows 7中使用python 3.x。我系统中的pandas版本是0.20.3。 根据我的项目要求,我需要安装Pandas版本0.19.2你能建议我怎么做吗?

我也尝试使用anaconda提示安装它,我在屏幕截图中给出了以下消息
>
</p>
<div class=


假设pandas是用pip安装的,你可以简单地用所需的版本重做安装。 如果它是通过其他方法安装的,则以下可能无效。

在命令终端中:

1
pip install pandas==0.19.2

在输出中,您应该看到提到卸载了以前的版本。