python包管理工具pip config详解

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

【python包管理工具pip config详解】


    推荐阅读