python3 + OSX(El Capitan)

$ xcode-select –install

pyenvのinstall

brew install pyenv

 

.bash_profile

PYENV_ROOT=”$HOME/.pyenv”
export PATH=”$PYENV_ROOT/bin:$PATH”
eval “$(pyenv init -)”

pythonのversion確認

$ pyenv install --list

python の最新版をinstall

$ pyenv install 3.5.1

python切り替え

pyenv global 3.5.1
pyenv rehash

切り替わっているか確認

python --version
Python 3.5.1

Leave a Reply