3

i have a matplotlib 3.2.1 library installed in python. I want to install an older version(3.1.0). What is the syntax i should use in anaconda prompt?

using below syntax installs the latest version, what should i try instead?

pip install matplotlib
DavidG
  • 24,279
  • 14
  • 89
  • 82
soumya sharma
  • 73
  • 1
  • 1
  • 5
  • Does this answer your question? [Installing specific package versions with pip](https://stackoverflow.com/questions/5226311/installing-specific-package-versions-with-pip) – DavidG May 28 '20 at 08:02

1 Answers1

6

Try this: pip install matplotlib==3.1.0

William Clavier
  • 314
  • 1
  • 5