Locking Python script dependencies
Daniel Perelman
The problem# In my last post, I had a shell script that used a helper script written in Python which had dependencies, which meant it required a virtual environment. The standard solution is to use pipx's pipx run or uv's uv tool run, but I don't like putting that into a script because that...