Comment on Ansible: Pure (only in its) pragmatismparentComments−cue_the_stringsOP1yNope, the issue is still there, and not just for Postgres. You need `hvac` to use Hashicorp Vault-related stuff, for example.There's a decent workaround, though, if you don't mind managing your Ansible install with `pipx` instead of your system package manager: $ pipx install ansible --include-deps $ pipx inject ansible psycopg2-binary --include-apps I'd prefer to use `uv tool install` instead of `pipx`, but it's not there yet [1].You can also containerize it w/ Podman or Docker and install the deps in the container. Maybe even add an alias.[1]: https://github.com/astral-sh/uv/issues/6314
Comments
Nope, the issue is still there, and not just for Postgres. You need `hvac` to use Hashicorp Vault-related stuff, for example.
There's a decent workaround, though, if you don't mind managing your Ansible install with `pipx` instead of your system package manager:
I'd prefer to use `uv tool install` instead of `pipx`, but it's not there yet [1].You can also containerize it w/ Podman or Docker and install the deps in the container. Maybe even add an alias.
[1]: https://github.com/astral-sh/uv/issues/6314