pip config 主要包含以下子命令:set、get、edit、list、debug、unset。下面我们逐一介绍下它们。
这个命令允许我们以name=value的形式配置某些项,比如设置镜像源:
pip config set global.index-url https://mirrors.cloud.tencent.com/pypi/simple
这个命令允许我们查看某个配置项的值,比如查看镜像源配置:
pip config get global.index-url
这个命令允许我们用一个编辑器打开配置文件进行编辑,如果我们没有指定--editor选项,就会用VISUAL或者EDITOR环境变量的值作为编辑器,如下命令:
pip config --editor=vi edit
这个命令以name=value的形式输出当前配置,假如我们已经执行了上面的pip config set命令,这时再执行 pip config list就会输出如下:
global.index-url='https://mirrors.cloud.tencent.com/pypi/simple'
这个命令列出各个配置文件位置及其内容,在我系统上执行pip config debug后输出如下:
env_var:
env:
global:
/etc/xdg/pip/pip.conf, exists: False
/etc/pip.conf, exists: False
site:
/usr/pip.conf, exists: False
user:
/home/xxx/.pip/pip.conf, exists: False
/home/xxx/.config/pip/pip.conf, exists: True
global.index-url: https://mirrors.cloud.tencent.com/pypi/simple
global.hello: world
这个命令允许我们删除一个配置,比如下面命令删除了镜像的配置:
pip config unset global.index-url
掌握了上述6个命令,你就学会了config的使用了,是不是很简单,欢迎评论交流!