Skip to content

FAQs

How do I hide the generated SQL from the logs or console output?

See the environment variables in Taskfile.yml and customlogging.py for documentation on how to control logging.

psycopg2 module does not install correctly.

You might see this error:

Error: pg_config executable not found.

pg_config is required to build psycopg2 from source.

The fix will depend on your specific environment.

Linux

  1. If on Linux, try: sudo apt install -y libpq-dev and then re-install dependencies.
  2. See https://www.psycopg.org/docs/install.html.
  3. See https://www.psycopg.org/docs/faq.html.

OSX

Run brew install postgresql@17.