By default, when you install anaconda, In .bash_profile, the following 3 lines required to use anaconda are written, so I was using zsh and could not use it.
So, add the following line to .zshrc and restart the shell to solve it
~/.zshrc
export PATH="/Users/uu083699/anaconda/bin:$PATH"
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
--A nice Python that contains almost all the libraries that you want in an analytical environment and are troublesome to install from the beginning. (pandas, scikit-learn, numpy, etc.) --There is a package management system called conda. It also contains pip.
pyenv install anaconda2-2.4.1
http://qiita.com/kazuhikoyamashita/items/ed5d8b94a902a2e89efa http://qiita.com/katzhide/items/527ef101d5067ee84416
Recommended Posts