Matplotlib的安裝可以參見 官網連結 http://matplotlib.org/users/installing.html
下面總結步驟如下:
windows 平台上 下載.exe格式 直接安裝。
1,python下載安裝 。
2,安裝你所需要版本(這個要根據步驟1的python版本)的Matplotlib,。
下面安裝Matplotlib 依賴的庫
3, 對於標準版的Python來說,要使用Matplotlib,還需要安裝numpy模組,其。
4, msvcp71.dll, 在某些系統上,你可能還需要下載msvcp71.dll庫。下載
這個檔案,解壓後把它拖到c:\windows\system32目錄中。
5, 運行一個簡單的程式例子:
import matplotlib.pyplot as pltplt.plot([1,2,3])plt.ylabel('some numbers')plt.show()
發現出現了下面的錯誤:
raise ImportError("matplotlib requires dateutil")
ImportError: matplotlib requires dateutil
這個需要dateutil,你可以到這裡下載安裝。
把dateutil 安裝完後又出現如下錯誤:
raise ImportError("matplotlib requires pyparsing")
ImportError: matplotlib requires pyparsing
需要 pyparsing 到這裡下載安裝。
完成以上步驟,運行上面的例子就可以顯示我們的映像,如下所示。
在程式安裝過程中如果遇到需要安裝的一些依賴包,你可以到這裡尋找,確實是個好資源。
可以根據所畫圖形的需要 在下面的連結裡選擇相應的圖形 進行修改,繪出自己所需的映像。
example: http://matplotlib.org/examples/index.html, gallery:http://matplotlib.org/gallery.html
注意繪圖時中文的解決方案, 在.py檔案頭部加上如下內容:
- # -*- coding: utf-8 -*-
- from pylab import *
- mpl.rcParams['font.sans-serif'] = ['SimHei'] #指定預設字型
- mpl.rcParams['axes.unicode_minus'] = False #解決儲存映像是負號'-'顯示為方塊的問題