Installieren Sie pyenv mit Gebräu
$ brew install pyenv
Durch den Pfad gehen. vim ~/.bash_profile Fügen Sie Folgendes hinzu:
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
Reflektieren source ~/.bash_profile
echo $PATH Bestätigen mit
Installieren Sie 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
Wenn die Installation wie oben beschrieben fehlschlägt, installieren Sie zlib und installieren Sie es erneut.
$ xcode-select --install
Installieren Sie es erneut und Sie sind fertig!
Schaltver
$ pyenv global 3.6.1
Bestätigung von ver
$ python --version
Recommended Posts