Python 2.7安裝常用的科學計算分析包
環境:Windows 7 32位,Python 2.7.6。
在看好書《NumPy攻略: Python科學計算與數據分析》,感覺開源版本就是發展很快,有些內容已更新,自己整理提煉了一下安裝numpy、scipy、matplotlib的過程及要點,供大家參考:
安裝Setuptools:
下載:ezsetup.py(https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py),python ezsetup.py安裝之。
安裝pip:python easy_install-2.7-script.py pip。
安裝pyreadline:easy_install pyreadline。
安裝ipython:easy_install ipython。
安裝NumPy:這裡Numerical Python下載合適版本安裝。
安裝scipy:這裡SciPy: Scientific Library for Python下載合適版本安裝。
安裝matplotlib:這裡matplotlib: downloads下載合適版本安裝。
matplotlib依賴包:
python-dateutil:easy_install python-dateutil。
pyparsing:easy_install pyparsing。
安裝PIL:這裡Python Imaging Library (PIL)下載合適版本安裝。
運行ipython(帶matplotlib庫):ipython --matplotlib
在ipython中測試NumPy:
import numpy as npnphi = (1 + np.sqrt(5))/2nprint "Phi: ", phin
如果想輸入中文,則要簡單處理一下:
import sysnreload(sys) nsys.setdefaultencoding(utf-8)nnprint unicode("Phi為:"), phin
再推薦一下《NumPy攻略: Python科學計算與數據分析》。
推薦閱讀:
※numpy和pandas入門
※python與numpy使用的一些小tips(2)
※python二進位文件的讀取
※Python:一篇文章掌握Numpy的基本用法
※Numpy中Meshgrid函數介紹及2種應用場景