Library not loaded: /usr/local/opt/readline/lib/libreadline.6.2.dylib

后端 未结 22 1795
闹比i
闹比i 2020-12-02 06:30

I just installed posgresql with homebrew and when I go on to type the command

psql

I get the following error:

dyld: Library         


        
22条回答
  •  [愿得一人]
    2020-12-02 06:57

    The answer above didn't work for me so I wanted to post what did eventually work. Based on a thread I found here, I had to uninstall readline and the install it again but from source.

    brew uninstall readline
    brew install --build-from-source readline
    

    After that the psql error went away.

提交回复
热议问题