Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda navigator VERY slow

Tags:

conda

anaconda

My anaconda navigator takes 2-3 minutes to start...Did anyone else notice this problem? I have proxy setting set correctly and I can use conda install with no problem...

like image 943
Jakub Avatar asked Dec 02 '16 13:12

Jakub


People also ask

How long does Anaconda Navigator update take?

The solution Here is the command for updating Anaconda Navigator with the command line. It will take around 1–2 minutes to install.

Does Anaconda slow down laptop?

Yes, Anaconda can run over 4 GB of RAM but sometimes you feel like it's lag and takes time to open your exe like Spyder, Jupyter Notebook.

Why is my Anaconda Navigator not launching?

Anaconda navigator won't launch Sometimes you will face the issue in which the Anaconda navigator will not be able to start. In order to solve this, make sure to move into the scripts directory C:\Anaconda\Scripts.

How long does it take for Anaconda to load?

While it is mostly unattended, the download and installation of Anaconda can take a fair amount of time (approximately 10 to 15 minutes, depending on the speed of your system), so it is highly recommended to do this before you arrive at the tutorial session (and when you have access to a decent internet connection).


2 Answers

I had the same problem. My issue was the ssl verification as I assume my workplace has done something with Firewall or etc. So I took the following two steps to fix it: - open command prompt (cmd.exe) - You can see the list of conda settings: conda config --show - Disable the ssl verification: conda config --set ssl_verify False

Now launch the Anaconda. If it takes time, wait! It will finally load. - Go to File->Preferences (shortkey: Ctrl+P) - Make sure to uncheck the "Enable SSL verification". (attached image) - Don't forget to click on the Apply button.enter image description here

That made the trick and Anaconda loads very fast!

like image 200
shaheen g Avatar answered Sep 20 '22 04:09

shaheen g


I stumbled upon this problem in two pc which had I5 / I7 processor(Win 10 / Win 8) with SSD.

This is how I fixed up the problem, now it takes around 20 second to boot Anaconda Navigator and all the apps) :

Open your prompt / CMD and type :

conda update conda conda update anaconda 

Also looks into your Antivirus :
they may isolate or block Anaconda because they could see it as a threat

Do a tour into your Antivirus/HIP/Firewall/Trusted applications and grant Anaconda full permission

like image 30
Fedeco Avatar answered Sep 19 '22 04:09

Fedeco