33
Lazy self-installing Python scripts with uv
(treyhunner.com)
Welcome to the Python community on the programming.dev Lemmy instance!
Past
November 2023
October 2023
July 2023
August 2023
September 2023
I've been working on a SquashFS based deployment system in Python, the issue I came across was the fact that the permission system relied on
tomllib
, which is only available on Python 3.11 only the latest LTS Linux distros have that version or above.But
uv
and thatshebang trick
, has helped me get round the limitations with ease and elegant.I'd say hat off to that, thank you for sharing that! =)