0
0

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 3 years have passed since last update.

新品のMacにとにかくanacondaをインストールする

Posted at

0. はじめに

PCを新調するたびにanacondaをMacに入れる方法をいつも調べてしまうので書き留めています。開発業務じゃなくても入れておくと何かと便利なので。

以下のステップでインストールします。

  1. pyenvのインストール
  2. anacondaのインストール

1. pyenvのインストール

pyenvをgithubからクローンします。
gitを初めて使うときはcommand line toolsのインストールを促されるかも。

git clone https://github.com/pyenv/pyenv.git ~/.pyenv

pyenvのパスを通しておきます。

$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zprofile
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zprofile
$ echo 'eval "$(pyenv init -)"' >> ~/.zprofile

これでpyenvが使えるようになるのでターミナルを再起動しておきます。

2. anacondaのインストール

インストール可能なanacondaを以下のコマンドで確認します。

$ pyenv install --list | grep anaconda

以下のコマンドでanacondaをインストールします。

$ pyenv install 入れたいバージョンのanaconda

いつも使うはずなのでグローバルに設定しておきます。

$ pyenv global ↑で入れたバージョンと同じもの

以上

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?