Issues using zsh shell
Anaconda is installed with bash, so you may run into problems using conda if your OS shell is zsh. Here are some solutions:
Last updated
Was this helpful?
Anaconda is installed with bash, so you may run into problems using conda if your OS shell is zsh. Here are some solutions:
Last updated
Was this helpful?
Open .bash_profile from terminal:
$ open ~/.bash_profile
Copy snippet after >>> conda initialize >>>
. Open .zshrc:
$ open ~/.zshrc
Paste the snippet at the bottom and save. Restart terminal.
Although not a satisfying solution, you could temporarily switch to bash when you are using Anaconda.
# Switch to bash
$ chsh -s /bin/bash
# Switch back to zsh
$ chsh -s /bin/zsh