LoginSignup
12
11

More than 5 years have passed since last update.

MacにPythonをインストールするときのメモ

Last updated at Posted at 2013-06-05

MacにPythonをインストールする時のメモ

  • homebrewはあらかじめインストールしておく。
  • インストールにはpyenvを使う。
  • MBP(Mid 2015) + OS X 10.11.6
# pyenvのインストール
brew install pyenv

# zlibエラーの回避
xcode-select --install

# インストール出来るPythonバージョンの確認
pyenv install -l

# python3系のインストール
pyenv install 3.5.2
pyenv rehash
pyenv global 3.5.2

# PATH設定
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
source ~/.bash_profile
12
11
0

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
12
11