Issue
I installed Anaconda via command line. The bash file.
If Im in bash, I can open and use anaconda, like notebooks, ipython, etc.
If I change my shell to ZSH, all the anaconda commands appear like "not found".
How I can make it work in zsh?
I use a Mac with OSx Sierra.
Solution
I had a similar issue.
I checked in my .profile
, .bashrc
, and .bash_profile
dot files in order to find any PATH information that I could copy over into my .zshrc
file. Sure enough:
# added by Miniconda3 4.2.12 installer
export PATH="/Users/username/miniconda3/bin:$PATH"
After running source ~/.zshrc
with those lines added, I could fire up my jupyter notebook server.
Answered By - Jonathan Wheeler
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.