Je suis actuellement en train de pratiquer matplotlib. C'est le premier exemple que je pratique.
#!/usr/bin/python
import matplotlib.pyplot as plt
radius = [1.0, 2.0, 3.0, 4.0]
area = [3.14159, 12.56636, 28.27431, 50.26544]
plt.plot(radius, area)
plt.show()
Quand je lance ce script avec python ./plot_test.py
il montre la parcelle correctement. Cependant, je l'exécute seul, ./plot_test.py
il jette les éléments suivants :
Traceback (most recent call last):
File "./plot_test.py", line 3, in <module>
import matplotlib.pyplot as plt
ImportError: No module named matplotlib.pyplot
Est-ce que python recherche matplotlib à différents endroits ?
L'environnement est :
Mac OS X 10.8.4 64bit
built-in python 2.7
numpy, scipy, matplotlib est installé avec :
sudo port install py27-numpy py27-scipy py27-matplotlib \
py27-ipython +notebook py27-pandas py27-sympy py27-nose