1

I have set a virtual environment with anaconda on windows 10 I set the .condarc file with proxy setting the conda install commands work fine but the pip install (via same virtual env) does not work as cannot access network what should be set especially for pip?

I put the proxy settings in the condarc

proxy_servers: http: http://myproxy.coo:8080 https: https://myproxy.com:8081

user271077
  • 996
  • 1
  • 19
  • 35
  • Possible duplicate of [Using pip behind a proxy](https://stackoverflow.com/questions/14149422/using-pip-behind-a-proxy) – merv Jun 13 '19 at 14:33

1 Answers1

1

Pip uses its own proxy configuration. Look at this SO question to learn how to configure pip to use a proxy server.

Felix
  • 6,131
  • 4
  • 24
  • 44