pyenv の代わりにmise を使ってpythonバージョン管理を行う

● mise の インストール

https://mise.jdx.dev/getting-started.html

brew install mise
# mise のバージョンを確認する
mise version

# mise のバージョンをアップグレードする
brew install mise

● miseをパスに追加する

zsh の場合

echo 'eval "$(mise activate zsh)"' >> ~/.zshrc

bash の場合

echo 'eval "$(mise activate bash)"' >> ~/.bash_profile

● Python のインストール

Python の 3.x をインストールします。

mise use -g python@3

● uv ( uvx )のインストール

mise use -g uv@latest
No.2628
06/09 10:08

edit