conda command not found
I recently installed oh-my-zsh to avoid my mistakes I have been constantly making while using git and improve my command line interface experience.
oh-my-zsh was great but It suddenly started not recognizing conda command.
Naturally, I got a problem with using conda virtual environment.
Add Path to ~/.zshrc file
It seems like this new theme in zsh does not have path to conda so does not know where to look when conda command comes. As suggested here, I found the right path from .bash_profile and pasted it to .zshrc file.
So first, open your .bash_profile file by running following command.
open ~/.bash_profile
You will see the PATH automatically added by Miniconda in my case. If you installed Anaconda, you will see Anaconda instead. Copy this two lines.
# added by Miniconda3 installer export PATH="/Users/mkang/miniconda3/bin:$PATH"
Go back to the terminal and open .zshrc file via vim and paste the above lines somewhere.
vim ~/.zshrc
source the file or open a new terminal to make the change in effect.
source ~/.zshrc
Now zsh understands conda command!