您好,登錄后才能下訂單哦!
這篇文章主要介紹python用pip安裝庫的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
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 可以通過以下命令獲取:
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/
中國科學技術大學 http://pypi.mirrors.ustc.edu.cn/simple/
Windows對應文件:
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安裝庫的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。