How to specify a second pypi-type repository
Closed this issue · 3 comments
rkhwaja commented
I have
[[source]] url = "https://pypi.python.org/simple"
How do I specify a second source for a private repository?
kennethreitz commented
Excellent question!
pradyunsg commented
Like so:
[[source]]
url = "https://pypi.python.org/simple"
[[source]]
url = "https://pypi.my-company-page.com/simple"
kennethreitz commented
thanks @pradyunsg!