facebook twitter hatena line email

Mac/インストール/pyenv

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

pyenvインストール

brew install pyenv

pythonバージョン一覧

pyenv install --list
pyenv install --list  | egrep '^[ ]+[3]\.(9|10|11)\..+$'

参考:https://qiita.com/crankcube/items/15f06b32ec56736fc43a

指定pythonインストール

pyenv install 3.11.7

pythonのバージョンをglobalに反映

$ pyenv global 3.11.7
  system
* 3.11.7

pythonのバージョンをlocalに反映

pyenv local 3.11.7

path登録

export PATH="${HOME}/.pyenv/shims:${PATH}"
$ python -V
Python 3.11.7