Christopher Tyler

How to Reinstall Python with uv

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

1
$ uv python install --reinstall 3.13

However this could break your existing virtual environments so instead:

1
$ uv python install 3.13.X

Which won’t get rid of the previous version.

<< Previous Post

|

Next Post >>

#Uv #Python