soumya sharma
soumya sharma

Reputation: 83

install older version of Matplotlib in python

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

Upvotes: 4

Views: 19701

Answers (1)

William Clavier
William Clavier

Reputation: 334

Try this: pip install matplotlib==3.1.0

Upvotes: 8

Related Questions