0
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MacでPythonの環境構築

0
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?