Open manjunath-sundaram opened 3 years ago
this can happen if you use conda config --add proxy_servers.https https://ipaddress:port
, which may create the following format that appears to be bad:
proxy_servers:
https:
- https://ipaddress:port
http:
- http://ipaddress:port
below works instead:
proxy_servers:
https: https://ipaddress:port
http: http://ipaddress:port
it would be nice if conda config --add
could handle this for the user
The correct way seems to be to use --set
instead of -add
: conda config --set proxy_servers.https https://ipaddress:port
It would indeed be nice if this were to be handled automatically, or at least give a meaningful error to the user.
Actual Behavior
Anaconda.Navigator fail to start and throws error screen after setting environment variables for proxy
Expected Behavior
Anaconda.navigator launches successfully
Steps to Reproduce
Launch Anaconda
Anaconda or Miniconda version:
Operating System:
Windows 10
conda info
conda list --show-channel-urls