1. 程式人生 > >安裝python第三方模塊

安裝python第三方模塊

class code 鏡像 num 好的 uci mir pychar 豆瓣

下載

第三方模塊的下載地址: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模塊

技術分享圖片

技術分享圖片

安裝python第三方模塊