I've got a custom pypi server running and am wondering how to point all references to https://pypi.python.org/ from there to my custom server?
I want to be able to cover cases of a user calling pip
/ easy_install
of a package (so they don't have to remember to do -i
or -f
) as well as someone doing python setup.py install
using setuptools with install_requires
in the setup.py
.
Is there some global config or setting I can do to get all these different methods to look at my local server? I imagine doing some network-proxy-type magic to route http://pypi.python.org/
to my custom server would be one way to go but unfortunately that's not an option.
Thanks!