mohd tousif
mohd tousif

Reputation: 11

Could not find a version that satisfies the requirement matplotlib.pylot (from versions: ) No matching distribution found for matplotlib.pylot

Error while installing a package:

pip install matplotlib.pylot

and i'm getting an error as Could not find a version that satisfies the requirement matplotlib.pylot (from versions: ) No matching distribution found for matplotlib.pylot

Upvotes: 1

Views: 15644

Answers (2)

Lucas Koblitz
Lucas Koblitz

Reputation: 45

The module you need to install is only matplotlib

try this:

pip install matplotlib

Upvotes: 4

1737973
1737973

Reputation: 118

It's called pyplot, not pylot.

Instead of..:

pip install matplotlib.pylot

... try:

pip install matplotlib.pyplot

Upvotes: 1

Related Questions