LoginSignup
24
29

More than 5 years have passed since last update.

pyenv + fish 環境構築

Posted at

pyenvのインストール

Macの場合、brewコマンドでインストール可能
brew install pyenv

バージョン確認

pyenv install -l

Pythonインストール

pyenv install hogehoge ※上記コマンドで確認したpythonのバージョンを指定

config.fishに設定追加

下記の設定を追記する
set -x PATH $HOME/.pyenv/bin $PATH
. (pyenv init - | psub)

バージョンの指定

pyenv global hogehoge
hogehoge部分にオプションで使用するpythonのバージョンを指定

下記コマンドでバージョンが変更されている事を確認
python --version

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