python如何配置pip

johnchou發表於2021-09-11

python如何配置pip

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

配置檔案路徑

有多個路徑可以配置pip,如果不存在該路徑,可以自行建立。

1. 每個使用者的配置路徑:%APPDATA%pippip.ini或者%HOME%pippip.ini。其中,%APPDATA%和%HOME%的值可以在命令列中透過echo命令來列印出具體的值,從而進行配置。 

1. 通用路徑:win7下為C:ProgramDatapippip.ini,win XP下為C:Documents and SettingsAll UsersApplication Datapippip.ini。其中,win7下為隱藏檔案。

1. 另外,還可以透過環境變數PIP_CONFIG_FILE來指定配置檔案的路徑。

配置檔案內容

只要pip命令中出現的選項都可以配置在配置檔案中,比如直接輸入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 = 
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等多條子命令,這些都可以分別配置。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4422/viewspace-2836263/,如需轉載,請註明出處,否則將追究法律責任。

相關文章