I\'m working on a Mac, Sierra 10.12.3, and I\'m trying to access a PostgreSQL database via the psql
command, but it threw the error
dyld: Library n
After I run brew upgrade
, I also had this problem.
First, You need to confirm the version of the readline
on your Mac.
In your situation, your old readline's version is 6.x. After upgrading, your readline was updated into 7.0.1. So you need to link your new readline.
These code might be helpful.
$ cd /usr/local/opt/readline/lib/ # cd to readline library
$ sudo ln -s libreadline.7.dylib libreadline.6.dylib # change the link
I think the better way is to change the system readline link, but I don't know how to change.