Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda launcher won't open

Tags:

anaconda

I downloaded anaconda but when I click on the launcher application it doesn't open. I have tried to update it in terminal but it says command not found. How can I fix this?

like image 470
python help Avatar asked Feb 19 '15 21:02

python help


People also ask

Why is my Anaconda not opening?

This is often the result of a corrupted . condarc file. To resolve, delete the . condarc file and restart Navigator.

How do I launch an Anaconda from the prompt?

To open Anaconda Prompt: Windows: Click Start, search for Anaconda Prompt, and click to open. macOS: Use Cmd+Space to open Spotlight Search and type “Navigator” to open the program.


3 Answers

In addition to fixing the path issues, as suggested by Thomas. (Assuming you didn't press yes wen the installer asked if you wanted to prepend the Anaconda install location to your PATH)

It might just help to install the launcher:

>> conda install launcher
like image 110
Rubenulis Avatar answered Nov 12 '22 21:11

Rubenulis


Anaconda Navigator stopped working after running TensorFlow script.

I reinstalled a new version of Anaconda. That did not fix the problem.

I followed a advice from: https://github.com/ContinuumIO/anaconda-issues/issues/910 that did not fix the problem either.

Finally I tried this and it worked:

sudo rm -rf ~/.continuum/

Somehow ~/.continuum/ was owned by root.

like image 25
Sami Badawi Avatar answered Nov 12 '22 21:11

Sami Badawi


In Windows, I used spyder directly from here: C:\Program Files\Anaconda3\Scripts\spyder.exe This is good to start coding.

like image 1
Sayed Avatar answered Nov 12 '22 23:11

Sayed