gpt4 book ai didi

pip - 查找默认 pip index-url

转载 作者:行者123 更新时间:2023-12-02 01:48:32 25 4
gpt4 key购买 nike

有没有办法找到我的 pip 命令在运行类似 pip install <package> 时将查找的 url ?

您可以配置类似 .pip/pip.conf 的文件和.pypirc修改默认值,但我想知道是否有办法知道镜像优先级。

我可以查找运行带有详细标志 ( -v ) 命令的特定内容吗?

最佳答案

install 命令的帮助消息将包含 --index-url 选项旁边的默认值。

$ pip install -h
...
-i, --index-url <url> Base URL of Python Package Index (default https://pypi.python.org/simple).
...

该消息可能会略有不同,具体取决于您的 pip 版本。如果备用地址是 configured ,它将出现在该帮助消息中。

$ cat ~/.config/pip/pip.conf
[global]
index-url = https://my.local.mirror.com/simple
$ pip install -h
...
-i, --index-url <url> Base URL of Python Package Index (default https://my.local.mirror.com/simple).
...

关于pip - 查找默认 pip index-url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50100576/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com