LoginSignup
1
0

More than 5 years have passed since last update.

fish shellでpyenv/anaconda3をインストール

Last updated at Posted at 2018-09-28

環境

  • Mac OS High Sierra
  • homebrewインストール済み

pyenvのインストール

pyenvのインストール

brew install pyenv

anacondaのインストール

pyenvでインストールできるanacondaのバージョンを確認

pyenv install -l

anaconda3系のインストール

pyenv install anaconda3-5.2.0

パスを通す

fish shellにてパスを通す

set -gx PYENV_ROOT "$HOME/.pyenv"
set -x PATH $PATH "$PYENV_ROOT/bin"
status --is-interactive; and . (pyenv init - | psub)

これでpyenvcondaコマンドが使えるようになった

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