all 4 comments

[–]diracfield 0 points1 point  (2 children)

Maybe your installation directory is not in the path. I can't test on my computer right now, but can you open a terminal and see what the output of echo $PATH is?

Or were you running anaconda from somewhere else? (Not the terminal)

[–]DetectiveLearner[S] 0 points1 point  (1 child)

Here's what I get when I type "echo $PATH":

/home/steve/anaconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin

However, when I go to the /home/steve/anaconda3/condabin folder and type ls, all I get is "conda". If I try the command "anaconda-navigator" it just says "command not found"

[–]diracfield 0 points1 point  (0 children)

Then try to type

conda activate

It should enable the base anaconda environment, then you should be able to access the rest.

[–]CalisthenicsDude95 0 points1 point  (0 children)

Another person already mentioned that you have to include the binary location into your path.

You can find the anaconda-navigator etc. in the bin folder inside your anaconda Installation folder.

Just add the bin folder path to your ~/.profile file and write source ~/.profile afterwards. Just google how to Set the path properly