安裝python第三方模組
阿新 • • 發佈:2018-11-29
下載
第三方模組的下載地址: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模組