web-dev-qa-db-fra.com

Erreur d'installation Python Aucune distribution correspondante trouvée pour pyplot

J'essaie de lancer ce programme

import matplotlib.pyplot as plt
import numpy

plt.plot([1, 2, 3],[5, 7, 4])
plt.show()

Je reçois un message d'erreur: ImportError: Aucun module nommé pyplot

J'ai installé matplotlib sur Windows 8 64 bits, Python 2.7 avec la commande pip de bash et je l’ai également mis à jour.

Aneta@AKZ-5K-Computer:~$ C:/Python27/Scripts/pip install --upgrade matplotlib
Requirement already up-to-date: matplotlib in c:\python27\lib\site-packages
Requirement already up-to-date: pyparsing>=1.5.6 in c:\python27\lib\site-packages\pyparsing-2.0.3-py2.7-win32.Egg (from matplotlib)
Requirement already up-to-date: numpy>=1.6 in c:\python27\lib\site-packages (from matplotlib)
Requirement already up-to-date: pytz in c:\python27\lib\site-packages\pytz-2015.6-py2.7.Egg (from matplotlib)
Requirement already up-to-date: python-dateutil in c:\python27\lib\site-packages\python_dateutil-2.4.2-py2.7.Egg (from matplotlib)
Requirement already up-to-date: six>=1.4 in c:\python27\lib\site-packages\six-1.10.0-py2.7.Egg (from matplotlib)

Quand j'ai essayé d'installer pyplot j'ai eu ce massage:

Aneta@AKZ-5K-Computer:~$ C:/Python27/Scripts/pip install pyplot
Collecting pyplot
  Could not find a version that satisfies the requirement pyplot (from versions: )
No matching distribution found for pyplot

Si quelqu'un a une idée de la façon d'installer pyplot et pourquoi ma distribution ne correspond pas, j'apprécie votre aide. 

6
leela.fry

Essayez de réinstaller matplotlib à partir de ici . Peu importe que vous soyez sur un ordinateur 64 bits (moi aussi). Ce qui compte, c'est quelle version de Python avez-vous installée? Si vous avez installé le 32 bits (recommandé car il est un peu plus facile à gérer), vous installez toujours les versions 32 bits des modules.

Le site que je vous ai lié affiche les modules prérequis pour matplotlib, assurez-vous donc que vous les avez également installés.

6
pyman

Ou ce que vous pouvez faire, c'est simplement essayer pip install matplotlib. Importez ensuite matplotlib.pyplot pour obtenir les données pyplot. matplotlib est un module avec pyplot qui vous permet d'accéder facilement à pyplot.

2
Aditya Kuppili