Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda-Navigator - Ubuntu16.04

This is ubuntu16.04. I can open Anaconda-Navigator from the terminal using anaconda-navigator, but when I click on it, it doesn't open. What am I missing?

like image 532
Kasparov92 Avatar asked Mar 26 '17 15:03

Kasparov92


People also ask

How do I launch Anaconda navigator in Linux terminal?

Windows: You'll find Anaconda Navigator in the Start menu. Linux: Open a terminal window and run the command anaconda-navigator .

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

To run anaconda-navigator:

$ source ~/anaconda3/bin/activate root $ anaconda-navigator 
like image 56
Amir Saniyan Avatar answered Sep 28 '22 16:09

Amir Saniyan


it works :

export PATH=/home/yourUserName/anaconda3/bin:$PATH 

after that run anaconda-navigator command. remember anaconda can't in Sudo mode, so don't use sudo at all.

Anaconda Running screenshot

like image 26
Mohammad Heydari Avatar answered Sep 28 '22 16:09

Mohammad Heydari