我如何在pip.conf中声明多个extra-index-url

时间:2016-08-12 20:22:40

标签: python pip

我将在pip.conf中将其设置在哪里?

我想在pip.conf中添加两(2)个extra-index-url,但是在文档中进行了一些研究之后我没有找到解决方法。

1 个答案:

答案 0 :(得分:7)

虽然No output from Runtime.getRuntime().exec(“ls”)中的示例适用于--find-links,但它说:

  

--find-links等附加选项可以写在多行:

[global]
find-links =
    http://download.example.com

[install]
find-links =
    http://mirror1.example.com
    http://mirror2.example.com

所以我相信你可以为extra-index-url做同样的事情。当我遇到我正在测试的索引的问题时,我可以确认在命令行中传递两次参数与在多行上分离两个索引具有相同的效果,就像这个例子那样。

编辑:我可以确认这确实适用于extra-index-url