溫馨提示×

溫馨提示×

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

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

python配置pip的方法

發(fā)布時間:2020-08-14 10:04:27 來源:億速云 閱讀:358 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)python配置pip的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

pip用于python包的安裝,類似于Redhat下的yum、Ubuntu下的apt-get,可以解決安裝包依賴的問題,非常方便。這里,我們主要講下windows下的配置。

配置文件路徑

有多個路徑可以配置pip,如果不存在該路徑,可以自行創(chuàng)建。

1. 每個用戶的配置路徑:%APPDATA%\pip\pip.ini或者%HOME%\pip\pip.ini。其中,%APPDATA%和%HOME%的值可以在命令行中通過echo命令來打印出具體的值,從而進(jìn)行配置?!?/p>

1. 通用路徑:win7下為C:\ProgramData\pip\pip.ini,win XP下為C:\Documents and Settings\All Users\Application Data\pip\pip.ini。其中,win7下為隱藏文件。

1. 另外,還可以通過環(huán)境變量PIP_CONFIG_FILE來指定配置文件的路徑。

配置文件內(nèi)容

只要pip命令中出現(xiàn)的選項都可以配置在配置文件中,比如直接輸入pip命令,會提示以下選項,那么這些選項都可以卸載配置文件中。

General Options:
  --log <path>                Path to a verbose appending log.
  --proxy <proxy>             Specify a proxy in the form
                              [user:passwd@]proxy.server:port.
  --retries <retries>         Maximum number of retries each connection should
                              attempt (default 5 times).
  --timeout <sec>             Set the socket timeout (default 120.0 seconds).
  --exists-action <action>    Default action when a path already exists:
                              (s)witch, (i)gnore, (w)ipe, (b)ackup.
  --trusted-host <hostname>   Mark this host as trusted, even though it does
                              not have valid or any HTTPS.
  --cert <path>               Path to alternate CA bundle.
  --client-cert <path>        Path to SSL client certificate, a single file
                              containing the private key and the certificate
                              in PEM format.
  --cache-dir <dir>           Store the cache data in <dir>.
  --no-cache-dir              Disable the cache.
  --disable-pip-version-check
                              Don't periodically check PyPI to determine
                              whether a new version of pip is available for
                              download. Implied with --no-index.

這些選項是直接輸入pip命令得到,所以歸為General Options,在配置文件中,就要部署在global選項下,示例如下:

[global]
index-url = http://pypi.douban.com/simple
trusted-host = pypi.douban.com
disable-pip-version-check = true
timeout = 120

輸入命令pip help install,就會提示pip install支持的所有選項,在配置文件中,就要部署在install選項下,示例如下:

[install]
ignore-installed = true
no-dependencies = yes

pip支持install、download、uninstall、freeze、list、show、search、wheel、hash、completion等多條子命令,這些都可以分別配置。

關(guān)于python配置pip的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

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

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

AI