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.
Asked
Active
Viewed 1.6k times
1 Answers
4
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==<higher-version>

dsanatomy
- 533
- 4
- 14

Thomas Grsp
- 482
- 1
- 3
- 14
-
3It should be: `pip install pandas==0.18.0` instead of `pip install pandas=0.18.0` – Mockingbird Jul 30 '19 at 09:14