今天就跟大家聊聊有關(guān)如何使用pip安裝python庫,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供樂安網(wǎng)站建設(shè)、樂安做網(wǎng)站、樂安網(wǎng)站設(shè)計、樂安網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、樂安企業(yè)網(wǎng)站模板建站服務(wù),十多年樂安做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。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/
清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
中國科學技術(shù)大學 http://pypi.mirrors.ustc.edu.cn/simple/
2、從源碼安裝
示例如下:
git clone https://github.com/sphinx-doc/sphinx cd sphinx pip install .
3、從 whl 文件安裝
格式如下:
pip install SomePackage.whl
看完上述內(nèi)容,你們對如何使用pip安裝python庫有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。