Closed1
asdf で Python のバージョンを管理する
asdf で特定のバージョンの Python をインストール
➜ asdf plugin-add python
➜ asdf install python latest
➜ asdf list python
3.10.3
プライマリなバージョンを設定しておく
➜ asdf global python 3.10.3
➜ asdf current
python 3.10.3 /Users/{USER_NAME}/.tool-versions
➜ python -V
Python 3.10.3
ワーキングディレクトリに対して使うバージョンを設定する
➜ asdf local python 3.10.3
➜ which python
/Users/{USER_NAME}/.asdf/shims/python
このスクラップは2022/06/22にクローズされました