You’ve probably heard about uv: But using uv isn’t just about learning a few commands. It’s about changing how you think about packaging, and what commands you run on a regular basis. That’s why I’ve created a free uv crash course. Every day, for 12 days, you’ll get insights into how to (and how not…
Bottom line: If you’re typing uv pip install, you’re treating uv as a faster pip and missing the point. uv is built around projects: run uv init myproj to create a pyproject.toml, uv add to record dependencies, and uv run to execute your code. Do that, and you can ignore pip, venv, and pyenv entirely.…