Proxy Configuration
Overview
If you are installing navigate behind an institutional proxy, you may need to configure proxy settings so pip and conda can download packages.
Solution and Verification
Open system environment variable settings (Windows) or your OS equivalent.
Create these variables:
HTTP_PROXY=http://proxy.your_university.edu:1234HTTPS_PROXY=http://proxy.your_university.edu:1234
If installation still fails, try:
HTTPS_PROXY=https://proxy.your_university.edu:1234
If problems persist, configure proxy settings directly in package-manager config files.
Conda config file (Windows):
C:\Users\<UserProfile>\.condarcpip config file (Windows):
C:\Users\<UserProfile>\pip\pip.ini
You can also set proxy variables in an Anaconda Prompt:
set https_proxy=http://username:password@proxy.example.com:8080
set http_proxy=http://username:password@proxy.example.com:8080