M BUZZ CRAZE NEWS
// general

Anaconda Nav wont launch 18.04

By Emma Johnson

I type in anaconda-navigator but i get this "anaconda-navigator: command not found" I have conda update conda.

3 Answers

Run this command on your terminal:

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

Open a terminal and change your directory

cd ~/anaconda3/bin

Export the anaconda3 path

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

Check whether your conda is working

conda --version

Launch the anaconda navigator

anaconda-navigator

Hope this helps!

PS It may take some time to launch navigator.

First, check whether conda-navigator is installed in your system or not.

Use command

conda list anaconda

check whether anaconda-navigator is there or not. If not there then you have install anaconda-navigator

use command

conda install anaconda-navigator 

Then use this command

anaconda-navigator 

anaconda-navigator should launch

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy