Reputation: 11
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
Reputation: 45
The module you need to install is only matplotlib
try this:
pip install matplotlib
Upvotes: 4
Reputation: 118
It's called pyplot, not pylot.
Instead of..:
pip install matplotlib.pylot
... try:
pip install matplotlib.pyplot
Upvotes: 1