永久修改 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple 其他 这个都属于pip 命令行,config 后面参数 C:\Users\Administratorpip config ERROR: Need an action (debug, edit, get , list, set , unset ) to
永久修改
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple其他
这个都属于pip 命令行,config 后面参数
C:\Users\Administrator>pip configERROR: Need an action (debug, edit, get, list, set, unset) to perform.
命令
说明
pip config edit
编辑配置文件(windows在终端不能编辑)
pip config get
获取配置项的值,例如pip config get global.index-url
pip config list
列出所有配置
pip config set
添加配置
pip config unset
删除配置
另外windows上还有一个pip config debug 可以查看各个作用域的pip.ini文件,以及其内容。
其他2
之前一直自己写入添加pip.ini文件,近期才知道pip已经做了这些功能,才发现自己做了重复劳动。后悔不已,竟然学了这么久python才知道,很是惭愧。
本文来自博客园,作者:Hello_wshuo,转载请注明原文链接:javascript:void(0)p/15622139.html