Anaconda navigator is VERY slow

My anaconda navigator takes 2-3 minutes to get started ... Has anyone else noticed this problem? I have proxy settings configured, and I can use the conda program without any problems.

+6
source share
1 answer

I also had a problem with Anaconda Navigator, starting from a long time (5-10 minutes) on my Windows 10 machine. After defining the proxy settings in the .condarc file and OS ENV variable, it decreased to 1-1.5 minutes. See if this works for you :).

Changes to the .condarc File

proxy_servers: http: http://yourhttpproxy:port https: https://yourhttpsproxy:port 

Update OS ENV variable as:

 HTTP_PROXY= http://yourhttpproxy:port HTTPS_PROXY = https://yourhttpsproxy:port 

0
source

Source: https://habr.com/ru/post/1012837/


All Articles