How to declare more than one additional url index in pip.conf

Where can I install this in pip.conf?

I want to add two (2) additional urls indexes to pip.conf, but I have not found a solution how to do this after some research in the docs.

+4
source share
1 answer

Although the sample docs are for --find-links, he says:

Adding parameters, such as --find-links, can be written on several lines:

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

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

, extra-index-url. , , , , , .

edit: , extra-index-url.

+4

Source: https://habr.com/ru/post/1651119/


All Articles