新規Macを設定する際に忘れていたのでメモ。
(諸事情で移行アシスタントやTimemachine使えない)
1 pyenv を追加
brew install pyenv
2 PYENV_ROOT 追加
export PYENV_ROOT="${HOME}/.pyenv"
3 pyenv の初期化処理を追加(profile,rcなどに)
eval "$(pyenv init -)"
4 PATHの設定(profile,rcなどに)
export PATH="$PYENV_ROOT/bin:$PATH"
export PATH="$PYENV_ROOT/shims:$PATH"
5 profile or rc のリロード
source {.zshrc|.zprofile}