Avec pyenv, plusieurs versions de python peuvent coexister, ce qui est très pratique.
brew install pyenv-virtualenv pyenv
~/.zshrc
# pyenv
export PYENV_ROOT="${HOME}/.pyenv"
export PATH=${PYENV_ROOT}/bin:$PATH
eval "$(pyenv init -)"
Reflété dans ** source ~ / .zshrc **
Introduction de pyenv-pip-rehash, un outil d'automatisation pour pyenv rehash
git clone https://github.com/yyuu/pyenv-pip-rehash.git ~/.pyenv/plugins/pyenv-pip-rehash
#Liste des versions installables
pyenv install -l
#Je voulais utiliser anaconda, j'ai donc installé la dernière version d'anaconda
pyenv install anaconda3-4.0.0
#Vérifiez la version installée
pyenv versions
#commutation
pyenv global anaconda3-4.0.0
#Emplacement de la commande
which python
/Users/yudsuzuk/.pyenv/shims/python
#Confirmation de version
python --version
Python 3.5.1 :: Anaconda 4.0.0 (x86_64)
ipython notebook
J? ai compris