Window8.1下安裝Matplotlib庫

有兩種方法:html

  1. 直接選用一些預打包庫軟件,如WinPython, Python(x,y), Enthought Canopy, or Continuum Anaconda。這些軟件中已包含有Matplotlib和其它經常使用庫。這裏推薦Anaconda
  2. 在標準Python版本基本上自行安裝Matplotlib庫,比較麻煩。能夠分爲兩種方法:
  • 下載資源包matplotlib-1.5.3.tar.gz (md5, pgp),用python setup.py install命令安裝。安裝方法可參考安裝pip。這種方法有時可能由於須要其它庫致使失敗;
  • 下載whl文件,用pip install filename.whl命令安裝,filename.whl指的是對應版本和平臺下的whl文件名,具體見參考文章。以Python3.5版本爲例,需下載matplotlib-1.5.3-cp35-cp35m-win32.whl (md5)。推薦用這種方法,緣由是能夠自動檢測所需安裝包並自動下載。

參考: python

  1. http://matplotlib.org/users/installing.html
相關文章
相關標籤/搜索