「Mac/インストール/pyenv」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==pyenvインストール== brew install pyenv ==pythonバージョン一覧== pyenv install --list pyenv install --list | egrep '^[ ]+[3]\.(9|10|11)\..+$' 参考...」) |
(相違点なし)
|
2023年12月21日 (木) 18:57時点における版
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 -V Python 3.11.7