pip

Posted yspworld

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip相关的知识,希望对你有一定的参考价值。

可以在多个路径下找到pip.conf,没有则创建, 另外,还可以通过环境变量PIP_CONFIG_FILE来指定配置文件的路径。

Linux:

/etc/pip.conf

~/.pip/pip.conf

~/.config/pip/pip.conf

Windows:

%APPDATA%\pip\pip.ini

%HOME%\pip\pip.ini

C:\Documents and Settings\All Users\Application Data\PyPA\pip\pip.conf (Windows XP)

C:\ProgramData\PyPA\pip\pip.conf (Windows 7及以后)

Mac OSX:

~/Library/Application Support/pip/pip.conf

~/.pip/pip.conf

/Library/Application Support/pip/pip.conf

只要pip命令中出现的选项都可以配置在配置文件中(输入pip命令查看选型),这些选项都可以写在配置文件中。

[global]

index-url = http://pypi.douban.com/simple #豆瓣源,可以换成其他的源

extra-index-url = https://pypi.tuna.tsinghua.edu.cn/simple

trusted-host = pypi.tuna.tsinghua #清华

timeout = 120

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

以pip install为例

输入命令pip help install,就会提示pip install支持的所有选项,在配置文件中,就要部署在install选项下,示例如下:

[install]

ignore-installed = true

no-dependencies = yes

以上是关于pip的主要内容,如果未能解决你的问题,请参考以下文章

python中 pip install --upgrade pip出错

pip 没有读取 ~/.pip/pip.conf

pip 与pip3

python 中pip配置清华源(转)

CentOs 永久置换pip镜像源

python中怎么安装pip