Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

dyld: lazy symbol binding failed: Symbol not found: _PQsetErrorContextVisibility

On running

$ psql

I get this error

dyld: lazy symbol binding failed: Symbol not found: 
_PQsetErrorContextVisibility
Referenced from: /usr/local/bin/psql
Expected in: /usr/local/lib/libpq.5.dylib

dyld: Symbol not found: _PQsetErrorContextVisibility
Referenced from: /usr/local/bin/psql
Expected in: /usr/local/lib/libpq.5.dylib

Abort trap: 6

I have tried a few things:

  1. few posts suggested to update brew
  2. few suggested adding /usr/local/bin/psql to the ~/.bash_profile and restarting the system
  3. few said it was problem with XCode but I do not have XCode installed so it isnt valid for me I guess.

but none of it worked.

my bash_profile looks like this

PATH="/usr/local/bin/psql:/usr/local/sbin:/usr/local/bin:/sbin:/bin
:/usr/sbin:/usr/bin:/root/bin:/usr/local/bin/geckodrive‌​r:$PATH"
export PATH

I am using:

  • psql (PostgreSQL) 9.6.2
  • macOS Sierra version 10.12.3
like image 441
raj247 Avatar asked Jun 06 '17 15:06

raj247


2 Answers

I was on PostgreSQL 9.6.2 as well, and ran into the same problem.

I upgraded to 9.6.3 using brew like this:

rm '/usr/local/lib/libpq.5.dylib'
brew upgrade postgresql
brew link postgresql

It worked, and now I have access via psql again.

like image 170
o_oli Avatar answered Oct 16 '22 05:10

o_oli


The thing that worked for me was uninstalling and reinstalling postgres using the code below:

brew uninstall postgresql
brew install postgresql
like image 20
Mark Raymond Dela Cruz Avatar answered Oct 16 '22 05:10

Mark Raymond Dela Cruz