How to upgrade pandas from version 0.17.1 to higher version?
本问题已经有最佳答案,请猛点这里访问。
需要升级熊猫版本。我通过以下方式安装了熊猫:pip install-u pandas熊猫的安装版本是0.17.1,我需要0.18.0版本。
这种问题很容易通过谷歌搜索。
1 2 3 4 | # 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 |