Yes, uv is amazing , first I used it as a replacement for pip doing uv pip install
but then I discovered just doing uv sync
does everything in one step including downloading the python version and it blew my mind.
I was going to write you about it @sean . I had one problem with the python from uv which is that it had problems with the SSL certificates, same as I had consulted you about in another time. Turns out you can install certifi
and include this line in your environment
export SSL_CERT_FILE="$(python -c 'import certifi; print(certifi.where())')"