Can't launch Anaconda Navigator from command line nor is there a shortcut in the menu. What happened?

1

In Linux Mint 18.1 the following is what I get when I try to launch Anaconda Navigator today. It worked last night:

$ python3
Python 3.6.1 |Anaconda 4.4.0 (64-bit)| (default, May 11 2017, 13:09:58) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> anaconda-navigator
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'anaconda' is not defined
>>> 

J Shaw

Posted 2017-08-31T15:04:46.607

Reputation: 11

Answers

0

That is because you are launching anaconda navigator from the python shell. You have to first exit the shell in order to launch anaconda navigator. You can exit shell with:

exit()

or press Ctrl+D.

In the command line, you can then type:

anaconda-navigator

Sanky

Posted 2017-08-31T15:04:46.607

Reputation: 66