Library not loaded: /usr/local/opt/readline/lib/libreadline.6.dylib (LoadError)

前端 未结 8 765
囚心锁ツ
囚心锁ツ 2021-01-31 01:03

I try to run my rails c but for some reason, I get this error:

https://gist.github.com/anonymous/166713e8cde860fb188a8dffb98a1563

ᐅ rails c
         


        
8条回答
  •  迷失自我
    2021-01-31 01:51

    This command fix my problem:

    ln -s /usr/local/opt/readline/lib/libreadline.7.0.dylib /usr/local/opt/readline/lib/libreadline.6.dylib
    

    OR

    ln -s /usr/local/opt/readline/lib/libreadline.8.0.dylib /usr/local/opt/readline/lib/libreadline.7.dylib
    

    I wrote a Gist about this problem here. There are many people sharing their solutions there too.

提交回复
热议问题