1、Windows下(兩種方法)python
1. 安裝Python EDP_free並安裝pandaspython2.7
① 若是你沒有安裝python2.7,能夠直接選擇安裝Python EDP_free,而後再安裝pandas等包就行 :測試
Python EDP_free 網址: http://epdfree-7-3-2.software.informer.com/7.3/spa
雙擊epd_free-7.3-2-win-x86.msi 進行安裝,沒有什麼好講的,各類點擊下一步便可。.net
② 安裝完成後運行cmd(命令提示符),輸入python查看版本;若是出現ImportError: No module named site錯誤提示,請配置環境變量中的Path:code
Python安裝目錄/
Python安裝目錄/scripts/
③ 安裝piporm
在cmd中進入到get-pip.py的相應目錄下輸入:get-pip.pyblog
④ 安裝pandas圖片
pandas-0.17.0-cp27-none-win32.whl 網址: https://pypi.python.org/pypi/pandas/0.17.0/ip
在cmd中進入到pandas-0.17.0-cp27-none-win32.whl的相應目錄下執行以下命令
pip install pandas-0.17.0-cp27-none-win32.whl
⑤ 測試是否安裝成功
在cmd中輸入以下命令
ipython --pylab
import pandas plot(arange(10))
出現如下圖片即爲成功:
PS:在安裝pandas過程當中常常容易出現錯誤:'ascii' codec can't decode byte 0xd5
解決方法: 在python/lib/site.py中加入
import sys reload(sys) sys.setdefaultencoding('gbk')
2. 安裝Pycharm並安裝pandas(也能夠添加numpy等包,方法同樣)
下載並安裝Pycharm,而後在Pycharm中添加pandas:(安裝Pycharm的過程再也不說明)
打開 File→settings→Project→Project Interpreter,點擊右邊 綠色「+」, 在跳出的頁面上輸入pandas,並點擊Install Package。
( PS:出現問題解決方法如上)
2、Linux下
① Linux環境下安裝就比較順利,分別安裝python,pip,pandas便可,
具體流程給你們貼一個連接:http://blog.csdn.net/qq_34841823/article/details/52180408(轉);
② 或者安裝Pycharn,而後添加pandas等包便可。