LoginSignup
4

More than 3 years have passed since last update.

posted at

updated at

Mac OS X, Zsh の環境で pyenv

Mac OS X, Zsh の環境で pyenv の設定をします。

https://github.com/pyenv/pyenv

git clone https://github.com/pyenv/pyenv.git ~/.pyenv

以下を ~/.zshenv に追加する。~/.zprofileではないことに注意。

export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
if command -v pyenv 1>/dev/null 2>&1; then
  eval "$(pyenv init -)"
fi

https://github.com/pyenv/pyenv/wiki に従って環境を整えます。(Mojaveの場合)

brew install openssl readline sqlite3 xz zlib
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /

Update

cd $(pyenv root)
git pull

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
What you can do with signing up
4