這篇文章主要介紹python用pip安裝庫的方法,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
目前成都創(chuàng)新互聯(lián)已為成百上千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、雅安服務(wù)器托管、網(wǎng)站托管、服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計、攸縣網(wǎng)站維護(hù)等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
python怎么用pip安裝庫?
使用pip安裝python庫的幾種方式
操作系統(tǒng) : CentOS7.5.1804_x64
Python 版本 : 3.6.8
1、使用pip在線安裝
1.1 安裝單個package
格式如下:
pip install SomePackage
示例如下:
比如:pip install scipy
或者指定版本安裝:pip install scipy==1.3.0
1.2 安裝多個package
示例如下:
pip install -r req.txt
req.txt 可以通過以下命令獲?。?/p>
pip freeze > req.txt
1.3 在線安裝的其它問題
1.3.1 代理問題
如果需要通過代理安裝,可以使用如下格式:
pip --proxy=ip:port install SomePackage
1.3.2 pip源問題
如果pip源太慢,可以更換pip源,有以下兩種方式:
方式一:通過修改參數(shù)臨時修改pip源
比如使用阿里云的pip源:
pip install Sphinx -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
方式二:通過修改配置文件永久修改pip源
文件: ~/.pip/pip.conf
比如使用阿里云的pip源:
[admin@localhost .pip]$ cat ~/.pip/pip.conf [global] index-url = http://mirrors.aliyun.com/pypi/simple/ extra-index-url=http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host = mirrors.aliyun.com [admin@localhost .pip]$
也可以使用自建pip源,或者其它公開pip源,比如:
阿里云 http://mirrors.aliyun.com/pypi/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清華大學(xué) https://pypi.tuna.tsinghua.edu.cn/simple/
中國科學(xué)技術(shù)大學(xué) http://pypi.mirrors.ustc.edu.cn/simple/
Windows對應(yīng)文件:
C:\Users\用戶名\AppData\Roaming\pip\pip.ini
2、從源碼安裝
示例如下:
git clone https://github.com/sphinx-doc/sphinx cd sphinx pip install .
3、從 whl 文件安裝
格式如下:
pip install SomePackage.whl
其它
1、pip下載離線安裝包
命令示例:
下載命令:
pip download -d /tmp/packs -r requirement.txt -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
安裝命令:
pip install --no-index --find-links=/tmp/packs -r requirement.txt
以上是python用pip安裝庫的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!