matplotlib主頁:http://matplotlib.org/index.html html
安裝文檔:http://matplotlib.org/users/installing.html python
本人蔘見:DanielWang的博客,使用python Matplotlib庫繪圖 web
這個網上不少,也很簡單, 就不在這裏說了.也能夠去看看我另外一篇博客.(轉載的)測試
請參見我上一篇博客:點擊這裏ui
3. 安裝matplotlibspa
下載地址:http://sourceforge.net/projects/matplotlib/files/matplotlib/ , 下載完了就安裝,會本身找到python的安裝路徑. 裝完了以後,測試一下.net
import matplotlib.pyplot as plt
不出現錯誤就是安裝好了.code
4. 下面運行一個簡單的例子orm
import matplotlib.pyplot as plt plt.bar(left = 0,height = 1) plt.show()
發現出現了下面的錯誤:htm
raise ImportError("matplotlib requires dateutil")
ImportError: matplotlib requires dateutil
這個須要dateutil,你能夠到這裏下載安裝。
把dateutil 安裝完後又出現以下錯誤:
raise ImportError("matplotlib requires pyparsing")
ImportError: matplotlib requires pyparsing
須要 pyparsing 到這裏下載安裝.
完成以上步驟,運行上面的例子就能夠顯示咱們的圖像,以下所示。
若是出現上面畫面, 說明成功了.
可是並非每一個人都這麼幸運的, 你可能會出現這個錯誤:ImportError: No module named six
解決這個錯誤,請參見我下一篇博客.python錯誤:No module named six