Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda Installed but Cannot Launch Navigator

Anaconda (listed as "Python 3.6.0 (Anaconda 4.3.1 64 bit)" ) is in my programs and features list, but there is seeming no Anaconda Navigator desktop app, as their seems to be no icon on my desktop and I am unable to search for it through "Start". Could this be because I have the 32-bit version of Anaconda downloaded and I have a 64-bit OS (I thought I should do this because Python on my computer was 64-bit) or because I downloaded Anaconda under "users" instead of Desktop. I also downloaded Anaconda twice, if that could be causing some of the problem. I have a Windows 10 laptop, if that is any help.

like image 425
Nathan S. Avatar asked Jun 30 '17 07:06

Nathan S.


People also ask

Why isn't my anaconda Navigator not opening?

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 do I open anaconda Navigator in Ubuntu terminal?

1 Answer. You may add the source ~/anaconda3/bin/activate root command at the end of your ~/. bashrc file so the command will be executed for any new terminal you open. Then open a new terminal and the root Python environment will be activated, so you will be able to use anaconda-navigator immediately.


2 Answers

Try to

source ~/anaconda3/bin/activate root anaconda-navigator 

https://github.com/ContinuumIO/anaconda-issues/issues/1580

like image 148

Open up a command terminal (CTRL+ALT+T) and try running this command:

anaconda-navigator 

When I installed Anaconda, and read the website docs, they said that they tend to not add a file or menu path to run the navigator because there are so many different versions of different systems, instead they give the above terminal command to start the navigator GUI and advise on setting up a shortcut to do this process manually - if that works for you it shouldn't be too much trouble to do it this way - I do it like this personally

like image 20
raser Avatar answered Oct 05 '22 06:10

raser