user2366975
user2366975

Reputation: 4700

Can't use "conda install pyqt" with proxy internet

How can I install pyqt for my Anaconda setup? The installer can't work with the internet proxy settings. Is there an offline installer? I have tested

conda install pyqt

Upvotes: 2

Views: 2829

Answers (1)

asmeurer
asmeurer

Reputation: 91480

You can set the proxy settings in your ~/.condarc file, like

proxy_servers:
    http: http://user:[email protected]:8080
    https: https://user:[email protected]:8080

If you omit the username and password, conda will prompt you for them. See http://conda.pydata.org/docs/config.html for more information.

Upvotes: 1

Related Questions