下載
第三方模塊的下載地址:https://pypi.python.org/pypi
其他版本的第三方模塊下載地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
pipy國內鏡像目前有:
豆瓣 http://pypi.douban.com/simple/
阿里雲 http://mirrors.aliyun.com/pypi/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
華中理工大學 http://pypi.hustunique.com/
山東理工大學 http://pypi.sdutlinux.org/
1、安裝
1.1 命令行下安裝模塊
例:xlrd模塊
下載xlrd:http://pypi.python.org/pypi/xlrd
tar.gz包解壓后:在cmd命令下運行python setup.py install

1.2 安裝whl文件
需要在系統環境變量的path里設置

在cmd命令下運行 pip install ***.whl
2、查看已安裝的模塊
2.1、命令行下查看

2.2、在pycharm中查看已安裝好的模塊
先安裝pip以及easy_install模塊


