Yuhan.jp

Python を asdf でインストールする

2026年7月19日(日)

最初に

備忘録メモ。

 

Python を asdf でインストール

Pyrhon も asdf で統合管理するため、Homebrew 経由でインストールしていた Python をアンインストールして最新の Python をインストールする。

 

Homebrew 経由で入れた Python のアンインストール

brew uninstall python

確認

which python3

asdf を使って Python をインストールする

Python プラグインの確認

asdf plugin list all | grep python

プラグインのインストール

asdf plugin add python https://github.com/danhper/asdf-python.git

バージョンを指定して Python をインストール

asdf install python 3.14.6

使用するバージョンを指定

asdf set -u python 3.14.6

確認

asdf list
python -V