LoginSignup
0
4

More than 5 years have passed since last update.

MacでPythonの環境構築

Posted at

環境情報

  • macOS Sierra 10.12.6

手順


# 事前にPythonのバージョンを確認
$ python --version

# pyenvをインストール
$ brew install pyenv

# pyenvのバージョンを確認
$ pyenv -v

# bash_profileに環境変数を追記
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
$ echo 'eval "$(pyenv init -)"' >> ~/.bash_profile

# bash_profileを反映
$ source ~/.bash_profile

# Python3.6.0をインストール
$ pyenv install 3.6.0

# pyenvにインストールされているバージョンを確認
$ pyenv versions

# 使用するバージョンをPython3.6.0に変更
$ pyenv global 3.6.0

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