How to Reinstall Python with uv

How to Reinstall Python with uv

January 11, 2025

One of Simon Willison’s TIL showed that it is easy enough to upgrade Python with uv:

$ uv python install --reinstall 3.13

However this could break your existing virtual environments so instead:

$ uv python install 3.13.X

Which won’t get rid of the previous version.