python - Conda command not found -
i've installed miniconda , have added environment variable export path="/home/username/miniconda3/bin:$path" .bachrc , .bash_profile still can't run conda commands in terminal.
am missing setup? i'm using zsh way.
if you're using zsh , has not been set read .bashrc, need add miniconda directory zsh shell path environment variable. add .zshrc:
export path="/home/username/miniconda/bin:$path" make sure replace /home/username/miniconda your actual path.
save, exit terminal , reopen terminal. conda command should work.
Comments
Post a Comment