I\'m trying to run Django with a Postgresql backend on my local Mac OS X. I\'ve installed Django using pip:
sudo pip install Django
I\'ve inst
In postgress.app on mavericks the file pg_config is in /Applications/Postgres.app/Contents/MacOS/bin/ so i fixed the problem in this way:
pg_config
/Applications/Postgres.app/Contents/MacOS/bin/
sudo PATH=$PATH:/Applications/Postgres.app/Contents/MacOS/bin/ pip install psycopg2