Warm tip: This article is reproduced from serverfault.com, please click

Conda command not found

发布于 2016-02-06 20:58:53

I've installed Miniconda and have added the environment variable export PATH="/home/username/miniconda3/bin:$PATH" to my .bachrc and .bash_profile but still can't run any conda commands in my terminal.

Am I missing another setup? I'm using zsh by the way.

Questioner
olivrg
Viewed
0
2,747 2016-09-18 04:41:34

If you're using zsh and it has not been set up to read .bashrc, you need to add the Miniconda directory to the zsh shell PATH environment variable. Add this to your .zshrc:

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

Make sure to replace /home/username/miniconda with your actual path.

Save, exit the terminal and then reopen the terminal. conda command should work.