user271077
user271077

Reputation: 1006

Configuring Anaconda proxy works for conda and not for pip

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

Upvotes: 1

Views: 2222

Answers (1)

Felix
Felix

Reputation: 6359

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

Upvotes: 1

Related Questions