Skip to content

Instantly share code, notes, and snippets.

@ronsuez
Created May 9, 2015 20:18
Show Gist options
  • Save ronsuez/8e2c0d8a6c17dec7ddfb to your computer and use it in GitHub Desktop.
Save ronsuez/8e2c0d8a6c17dec7ddfb to your computer and use it in GitHub Desktop.
Config Postgresql on Yosemite OSX
After install postgresql on mac os x, generally you need to do the following things:
you need to replace the /usr/lib/libpq.5.dylib library because its version is too old.
Here's my solution to this problem:
$ sudo mv /usr/lib/libpq.5.dylib /usr/lib/libpq.5.dylib.old
$ sudo ln -s /Library/PostgreSQL/9.4/lib/libpq.5.dylib /usr/lib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment