LoginSignup
4
4

More than 3 years have passed since last update.

Mac OS X, Zsh の環境で pyenv

Last updated at Posted at 2019-06-13

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
4
4
2

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
  3. You can use dark theme
What you can do with signing up
4
4