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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python pip 源配置Python
- python配置pip映象Python
- mac python 包管理工具 pip 的配置MacPython
- python如何在cmd中升級pip?Python
- Windows下Python安裝併為pip配置阿里映象WindowsPython阿里
- python(pip)包/模組:如何離線安裝?Python
- pip安裝源配置
- 如何更新pip
- 如何在 Ubuntu 22.04 上安裝 Python Pip?UbuntuPython
- python:關於pipPython
- Python pip安裝Python
- python安裝pipPython
- Python pip換源Python
- 如何升級 pip
- pip 配置與更換映象源
- python之pip的使用Python
- Linux安裝Python3後,如何使用pip命令LinuxPython
- Ubuntu安裝Python的包管理工具Pip以及環境配置UbuntuPython
- python怎麼安裝pip?Python
- python的pip使用阿里源Python阿里
- python pip相關問題Python
- 如何透過python pip安裝第三方庫Python
- 【Python】升級python後pip報錯Python
- Windows手動新增python、pip環境變數及修改pip源WindowsPython變數
- 如何解決CentOS下使用yum安裝python-pip失敗CentOSPython
- python必須安裝pip嗎Python
- 使用 Python Pip 的 10 個技巧Python
- Python pip設定為清華源Python
- Ubuntu 配置 pip.conf 新增國內源Ubuntu
- centos python2.x環境下正確安裝python3並且配置pip3CentOSPython
- python自帶pip怎麼執行Python
- Python pip(管理模組工具)基礎用法Python
- python的pip快速安裝程式碼Python
- 批量安裝python庫函式—pipPython函式
- 【Python】軟體管理工具--pipPython
- pycharm如何配置python環境PyCharmPython
- python 配置檔案如何使用Python
- pip安裝如何新增清華源