You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I followed the installation and getting started instructions, but I'm getting below error:
pytest_postgresql.exceptions.ExecutableMissingException: Could not found /usr/lib/postgresql/17/bin/pg_ctl. Is PostgreSQL server installed? Alternatively pg_config installed might be from different version that postgresql-server.
After testing the code (postgresql_proc = factories.postgresql_proc()) and getting Permission denied: 'pg_config', I found in some issue that I should install libpq-dev as well, so the next step was:
sudo apt install libpq-dev
However, now I'm getting the error described in the issue, so I'm probably missing some more installation/configuration steps?
I saw someone getting a similar error, but they were running a Docker container with PostgreSQL and connecting to that, whereas I wanted to let the lib create and manage the instance.
The text was updated successfully, but these errors were encountered:
Hi, I followed the installation and getting started instructions, but I'm getting below error:
pytest_postgresql.exceptions.ExecutableMissingException: Could not found /usr/lib/postgresql/17/bin/pg_ctl. Is PostgreSQL server installed? Alternatively pg_config installed might be from different version that postgresql-server.
Here are the exact steps I executed:
After testing the code (
postgresql_proc = factories.postgresql_proc()
) and gettingPermission denied: 'pg_config'
, I found in some issue that I should installlibpq-dev
as well, so the next step was:sudo apt install libpq-dev
However, now I'm getting the error described in the issue, so I'm probably missing some more installation/configuration steps?
I saw someone getting a similar error, but they were running a Docker container with PostgreSQL and connecting to that, whereas I wanted to let the lib create and manage the instance.
The text was updated successfully, but these errors were encountered: