Mac psql/readline - Library not loaded

后端 未结 3 1625
情书的邮戳
情书的邮戳 2021-02-12 10:30

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         


        
3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-12 10:54

    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.

提交回复
热议问题