Using packages
You should never just run "pip install <package>"; installing into your global site-packages is a bad idea, and installing into your user site-packages is worse!
Python has a solution for this: virtual environments.
But if you just want to install a command-line tool, you don't have to set them up yourself!
uv tool install <package>
<package> <args...>