Installez pyenv avec infusion
$ brew install pyenv
Passez par PATH. vim ~/.bash_profile Ajoutez ce qui suit à
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
Réfléchir source ~/.bash_profile
echo $PATH Confirmer avec
Installer python
$ pyenv install 3.6.1
BUILD FAILED (OS X 10.12.5 using python-build 20160602) hogehoge~~ zipimport.ZipImportError: can't decompress data; zlib not available make: *** [install] Error 1
Si l'installation échoue comme décrit ci-dessus, installez zlib et réinstallez.
$ xcode-select --install
Installez-le à nouveau et vous avez terminé!
Commutation ver
$ pyenv global 3.6.1
Confirmation de ver
$ python --version
Recommended Posts