My Python Development Environment
Install Tools @macOS
Info
This is a from scratch to start a development environment in macOS. I am writing this in macOS Sonoma V14.0
Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Install brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install --cask visual-studio-code
brew install [email protected]
brew install pipx
brew install pyenv
Add VSCode Extensions
code --install-extension ms-python.black-formatter
code --install-extension ms-python.python
code --install-extension ms-python.vscode-pylance
Start a project
And the rest is in Starting a Python Project