LoginSignup
0
0

More than 1 year has passed since last update.

asdf でPythonの最新安定版をインストールする

Posted at

以前はPythonインタープリタのインストールは pyenv が定番でしたが、今後は他ツールも統一管理できる asdf の方が良さそう。

asdf のインストール

brew install asdf
asdf plugin-add python

全バージョンがインストールできますが、最新の安定版をインストールするには以下のように grep で抽出する。

n=python
for v in 3.7 3.8 3.9 3.10; do asdf install $n $(asdf list all $n | grep ^$v | tail -1); done
0
0
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
0
0