Mit pyenv können mehrere Versionen von Python nebeneinander existieren, was sehr praktisch ist.
brew install pyenv-virtualenv pyenv
~/.zshrc
# pyenv
export PYENV_ROOT="${HOME}/.pyenv"
export PATH=${PYENV_ROOT}/bin:$PATH
eval "$(pyenv init -)"
Reflektiert in ** Quelle ~ / .zshrc **
Einführung von pyenv-pip-rehash, einem Automatisierungstool für pyenv rehash
git clone https://github.com/yyuu/pyenv-pip-rehash.git ~/.pyenv/plugins/pyenv-pip-rehash
#Liste der Versionen, die installiert werden können
pyenv install -l
#Ich wollte Anaconda verwenden, also habe ich die neueste Version von Anaconda installiert
pyenv install anaconda3-4.0.0
#Überprüfen Sie die installierte Version
pyenv versions
#Schalten
pyenv global anaconda3-4.0.0
#Befehlsort
which python
/Users/yudsuzuk/.pyenv/shims/python
#Versionsbestätigung
python --version
Python 3.5.1 :: Anaconda 4.0.0 (x86_64)
ipython notebook
Ich hab es geschafft