Python畫圖庫 matplotlib, 數值計算庫 numpy, 科學計算庫 scipy 的安裝

來源:互聯網
上載者:User

linux

python-2.5.2

matplotlib-0.99.0.tar.gz  :http://sourceforge.net/projects/matplotlib/files/matplotlib/

numpy-1.3.0.tar.gz        :http://sourceforge.net/projects/numpy/files/NumPy/

scipy-0.11.0.tar.gz   :http://sourceforge.net/projects/scipy/files/scipy/0.11.0/

tar zxf numpy-1.3.0.tar.gz 
cd numpy-1.3.0
python setup.py build
python setup.py install

tar zxf matplotlib-0.99.0.tar.gz 
cd matplotlib-0.99.0
python setup.py build

python setup.py install

最後,matplotlib安裝在 /opt/zhankunlin/python-2.5.2/lib/python2.5/site-packages/目錄下,該目錄是python第三方庫的安裝目錄。

安裝完畢,目錄結構如下:

[root@glnode05 visualization]# ls /opt/python-2.5.2/lib/python2.5/site-packages/
dateutil  matplotlib  matplotlib-0.99.0-py2.5.egg-info  mpl_toolkits  numpy  numpy-1.3.0-py2.5.egg-info  pylab.py  pylab.pyc  pytz  README

( Windows 下下載 exe 檔案安裝即可, 成功後安裝在 D:\Python27\Lib\site-packages\ 目錄下 )

使用:

[root@glnode05 matplotlib]# python
Python 2.5.2 (r252:60911, Apr  7 2012, 22:16:07) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import matplotlib.pyplot as plt
>>> plt.plot([1,2,3,4], [1,4,9,16], 'ro')
[<matplotlib.lines.Line2D object at 0x12c7050>]
>>> plt.axis([0, 6, 0, 20])
[0, 6, 0, 20]

>>> plt.show()

相關使用以後附上,這裡有一些好的資料:

http://blog.csdn.net/sharkw/article/details/1904302

http://blog.sina.com.cn/s/blog_4b5039210100ie6a.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.