Anaconda Setup
Install Download the latest version of Python 3 from the Anaconda site. https://www.continuum.io/downloads
--Launch command prompt. --Check the Anaconda Home directory.
--Create a.condarc with a text editor and write as follows.
.condarc
proxy_servers:
http: http://[username]:[password]@[proxy server address]:[port]
https: https://[username]:[password]@[proxy server address]:[port]
--Rename the file at the command prompt. When I try to change it from Explorer, I get angry that "the file name does not exist".
>ren a.condarc condarc
--Check the settings. OK if the set proxy information is displayed.
>conda config --show
It can be specified as an argument at runtime.
pip install [packagename] --proxy http://[username]:[password]@[proxy server address]:[port]
Recommended Posts