LoginSignup
6
8

More than 5 years have passed since last update.

Macに最新のMinicondaをインストールする方法

Last updated at Posted at 2018-04-24

Macに最新のMinicondaをインストールする方法

  • Homebrew は、あらかじめインストールしておく。
  • インストールには pyenv を使う。
  • MBP(Mid 2017) + macOS 10.13.4
# pyenvのインストール
brew install pyenv

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

# miniconda3-latestのインストール
pyenv install miniconda3-latest
pyenv global miniconda3-latest
pyenv rehash

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

# アップデートを行う場合には以下のコマンドを使うとよい
conda update -n base conda -y
conda update --all -y
conda clean --all -y
6
8
1

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
6
8