Anaconda Navigator - Ubuntu16.04

It's ubuntu16.04. I can open Anaconda-Navigator from terminal using anaconda-navigator

but when I click on it it doesn't open. What am I missing?

+28


source to share


8 answers


To start anaconda-navigator:



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

      

+78


source


it works:

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

      



after that run the command anaconda-navigator

. remember that anaconda cannot in sudo mode, so don't use sudo at all.

Anaconda Running screenshot

+17


source


I am using Ubuntu 16.04. When I installed anaconda I faced the same problem. I tried this and it solved my problem.

step 1: $ conda install -c anaconda anaconda-navigator

Step 2: $ anaconda-navigator

Hope this helps.

+15


source


Just create a new text document named "anaconda-navigator.desktop" in your home directory using the terminal command:

gedit anaconda-navigator.desktop

      

Then enter the following in your text document:

#!/usr/bin/env xdg-open
[Desktop Entry]
Name=Anaconda
Version=2.0
Type=Application
Exec=/path/to/anaconda-navigator
Icon=/path/to/selected/icon
Comment=Open Anaconda Navigator
Terminal=false

      

Save the file, then move it to your local applications folder:

mv anaconda-navigator.desktop ~/.local/share/applications/

      

Once this is done, you can search for "Anaconda" in your applications screen, right-click and add to favorites. This way you don't have to go through the terminal every time!

Finished product

+5


source


Try it:

First change to the anaconda3 binaries directory by running

 cd anaconda3/bin

      

and now use this following command to open anaconda navigator

./anaconda-navigator

      

+2


source


add anaconda install path to .bashrc

export PATH="$PATH:/home/username/anaconda3/bin"

      

upload to terminal

$ source ~/.bashrc

      

run from terminal

$ anaconda-navigator

      

+1


source


I am running Anaconda Navigator on Kubuntu 17.04 and successfully launching the navigator window. Without knowing any of the error messages or operator; you can try reinstalling the command: conda install -c anaconda anaconda-navigator

0


source


I did what you suggested, but nothing happened!

0


source







All Articles