Error Installing Psycopg2 on MacOS 10.9.5 Error Installing Psycopg2 on MacOS 10.9.5 postgresql postgresql

Error Installing Psycopg2 on MacOS 10.9.5


I ran pip install psycopg2-binary and it worked like charm

More info about the binary package


You don't seem to have postgres installed, check how to install postgresql in your system, one of the way is brew install postgresql (if you use homebrew- recommended)or download the postgres app from postgresapp.com, pg_config should come with postgres and psycopg2 is trying to find it.


To install psycopg2 you need have installed server before( I have installed PostgresApp)

Run manually command including the path of pg_config program in PATH env variable, in my case:

export PATH=/Applications/Postgres.app/Contents/Versions/@latest/bin/:$PATH

and then run

pip3 install psycopg2

EDIT:

Check directory of pg_config:

which pg_config