Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

1 Commit

Repository files navigation

Python Setup for macOS

Guides for setting up a clean, maintainable Python development environment on macOS.

Guides

Quick Start

For most users, follow the pyenv guide:

# Install pyenv
brew install pyenv
# Add to ~/.zshrcexport PYENV_ROOT="$HOME/.pyenv"command -v pyenv >/dev/null ||export PATH="$PYENV_ROOT/bin:$PATH"eval"$(pyenv init - zsh)"# Install Python
pyenv install 3.11.11
pyenv global 3.11.11
# Install Poetry
curl -sSL https://install.python-poetry.org | python3 -

Tooling Summary

TaskTool
Python version managementpyenv (or mise)
Project dependenciesPoetry
Global CLI toolspipx

License

MIT

About

notes on setting up python

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors