How do I use pipenv behind a proxy?
An old thread in github says no (https://github.com/pypa/pipenv/issues/987) I don't find something in the documentation (https://pipenv.kennethreitz.org/en/latest/).
How do I use pipenv behind a proxy?
An old thread in github says no (https://github.com/pypa/pipenv/issues/987) I don't find something in the documentation (https://pipenv.kennethreitz.org/en/latest/).
In your user folder create a pip folder, if not already present, and create a pip.ini file in it containing
[global]
trusted-host = pypi.python.org
pypi.org
files.pythonhosted.org
proxy = <proxy:port>
Hope this helps