Reputation: 4700
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
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