如何将 Pandas 从 0.17.1 版本升级到更高版本?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/45569499/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-14 04:12:19  来源:igfitidea点击:

How to upgrade pandas from version 0.17.1 to higher version?

linuxpython-3.xpandas

提问by user3165247

Need to upgrade version of pandas. I installed pandas via: pip install -U pandas The installed version of pandas was 0.17.1 and I need version 0.18.0.

需要升级pandas版本。我通过以下方式安装了Pandas: pip install -U pandas 安装的Pandas版本是 0.17.1,我需要版本 0.18.0。

回答by Thomas Grsp

This kind of question is easily google-able.

这种问题很容易用谷歌搜索。

# if you want the latest version available
pip install pandas --upgrade
# or if you want to specify a version
pip install pandas=0.18.0