2013-10-24 135 views
0

我的操作系統是64位Windows 我的Python是32位。我在Eclipse中使用PyDevwindows上的matplotlib安裝問題

我應該安裝什麼版本的Matplotlib?

對於32位和64位,我得到的問題:

我只是奮力奔跑這個小模塊。

請幫忙!

回答

0

同樣的問題,不得不修復多次:你需要考慮以下依賴性。我發現的最佳解決方案是...

(1)如果您還沒有安裝PIP,請安裝https://pip.pypa.io/en/latest/installing.html(在python.org網站上引用)的說明。

(2)在這裏安裝非官方二進制文件numpy:http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy。 (3)然後通過命令pip install matplotlib 通過PIP安裝matplotlib這將正確安裝所有依賴關係(除了需要手動安裝的numpy以外)。

1

這些都是你需要Matplotlib在窗口與Python 2.7運行下載:

numpy的: http://sourceforge.net/projects/numpy/files/NumPy/1.9.0/numpy-1.9.0-win32-superpack-python2.7.exe/download

numpy的是目前僅在32位格式

檢查可用於Windows您numpy作品:

np進口np a = np.arange(10) a

dateutil六: CMD CD \ CD python27 \腳本 pip2.7安裝python-dateutil

這應該安裝六個以及

pyparsing和pytz: pip2.7安裝pyparsing PIP2。7安裝pytz

matplotlib: http://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.4.3/windows/matplotlib-1.4.3.win32-py2.7.exe/download?use_mirror=liquidtelecom

檢查,看看你的matplotlib最後的作品:

從matplotlib進口pyplot pyplot.plot([1,2,3,4],[1, 4,9,16]) pyplot.show()

希望這有助於 穆罕默德賽義德

+0

張貼單獨的行已被顯示爲單個行之後。例如。安裝pyparsing只需輸入pip2.7 install pyparsing。 一旦pyparsing安裝,然後鍵入命令行編輯器pip2.7安裝pytz –