溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用pip安裝python庫的方法

發(fā)布時間:2020-10-19 17:15:38 來源:億速云 閱讀:139 作者:小新 欄目:編程語言

這篇文章主要介紹了使用pip安裝python庫的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

使用pip安裝python庫的幾種方式

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/

2、從源碼安裝

示例如下:

git clone https://github.com/sphinx-doc/sphinx
cd sphinx
pip install .

3、從 whl 文件安裝

格式如下:

pip install SomePackage.whl

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享使用pip安裝python庫的方法內(nèi)容對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細(xì)的解決方法等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI