My platform:
Ubuntu 13.04, Python 2.7.4.
Error installing matplotlib, ImportError: There is no module named pyplot.
I have tried many ways such as
$ sudo apt-get install python-matplotlib
and easy to install, install from source ..., I am following http://matplotlib.org/faq/installing_faq.html
But none of them work, This ImportError always happens, can someone help?
EDIT Tracking back:
--------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-4-82be63b7783c> in <module>() ----> 1 import matplotlib /home/wuhuijia/matplotlib.py in <module>() 1 import numpy as np ----> 2 import matplotlib.pyplot as plt 3 import scipy.optimize as so 4 5 def find_confidence_interval(x, pdf, confidence_level): ImportError: No module named pyplot
source share