1

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.

Manish Gautam
  • 91
  • 1
  • 2
  • 5

1 Answers1

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