29
24

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.

pyenvでanaconda (Python3系) をインストール

Last updated at Posted at 2019-01-19

pyenvとは?

Pythonのバージョン管理ツール。

Anacondaとは?

データ分析、グラフ描画、画像処理の際によく利用するライブラリが含まれているPythonのディストリビューション。

pyenvインストール

# Homebrewでpyenvをインストール.
$ brew install pyenv
$ pyenv -v
pyenv 1.2.9

pyenv設定

.bash_profileに以下を記述する。

.bash_profile
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"

anaconda (Python3系) インストール

# pyenvでインストールできるpythonバージョン/ディストリビューションを表示.
$ pyenv install -l
(〜中略〜)
 anaconda3-5.3.1

# anacondaディストリビューションをインストール.
# Python3系はanaconda3-*.
$ pyenv install anaconda3-5.3.1

# インストール確認.
$ pyenv versions
  anaconda3-5.3.1

mac標準のPythonと入れ替え

$ python --version
Python 2.7.10

# Pythonバージョンを変更.
$ pyenv global anaconda3-5.3.1

# 変わった!
$ python --version
Python 3.7.0

参考

29
24
3

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
29
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?