commands for installing python brew install python brew install pyenv brew install uv poetry confirm uv and poetry $ uv --version uv 0.6.4 (Homebrew 2025-03-03) $ which uv /opt/homebrew/bin/uv $ poetry --version Poetry (version 2.1.1) $ which poetry /opt/homebrew/bin/poetry add pyenv settings to ~/.zprofile ```shell cat <> ~/.zprofile export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init --path)" EOF ``` then run source on that file source ~/.zprofile edit `~/.zshrc` and add **pyenv** and **pipenv** to the plugins ```shell plugins=( # autoswitch_virtualenv aws git pyenv uv zsh-autosuggestions zsh-syntax-highlighting ) ```