Anaconda Spyder and proxy settings
To allow Spyder to access internet when behind a proxy server I used environment variables HTTP_PROXY and HTTPS_PROXY.
In Anaconda Prompt I typed:
set HTTP_PROXY=192.168.1.2:8080 set HTTPS_PROXY=192.168.1.2:8080 pip install graphviz
Settings in ~/.condarc file (as described in Using the .condarc...) didn't works:
proxy_servers: http: http://192.168.1.2:8080 https: https://192.168.1.2:8080
Komentarze
Log in or create a user account to comment.