当前位置 : 主页 > 编程语言 > python >

python安装第三方库换源

来源:互联网 收集:自由互联 发布时间:2022-06-24
永久修改 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 config
ERROR: 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​​


网友评论