0
需要升級版本的熊貓。 我通過以下方式安裝了熊貓:pip install -U pandas 熊貓的安裝版本是0.17.1,我需要版本0.18.0。如何將熊貓從版本0.17.1升級到更高版本?
需要升級版本的熊貓。 我通過以下方式安裝了熊貓:pip install -U pandas 熊貓的安裝版本是0.17.1,我需要版本0.18.0。如何將熊貓從版本0.17.1升級到更高版本?
這類問題很容易在谷歌上使用。
# 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