Created
November 29, 2016 20:42
-
-
Save wbotelhos/46c37807c834ccb5bb406e426adfe347 to your computer and use it in GitHub Desktop.
Library not loaded: /usr/local/opt/readline/lib/libreadline.6.dylib (LoadError)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ln -s /usr/local/opt/readline/lib/libreadline.7.0.dylib /usr/local/opt/readline/lib/libreadline.6.dylib |
thank you
I really messed things up somewhere and had to do the following:
brew uninstall --ignore-dependencies readline
brew install readline
ln -s /usr/local/opt/readline/lib/libreadline.8.0.dylib /usr/local/opt/readline/lib/libreadline.7.dylib
You may also need to do:
ln -s /usr/local/opt/readline/lib/libreadline.8.0.dylib /usr/local/opt/readline/lib/libreadline.6.dylib
If you get
/usr/local/opt/readline/lib/libreadline.6.dylib: File exists
when you run this, you can insteadbrew install readline
and copy the version-specific files over:sudo cp /usr/local/Cellar/readline/7.0.3_1/lib/*.7.* /usr/local/opt/readline/lib/
. It's messy, but it fixed it for me.
thanks, just need to brew reinstall readline
Thanks ❤️
Thank you, <3
Had to do the same to link version 8
ln -s /usr/local/opt/readline/lib/libreadline.8.0.dylib /usr/local/opt/readline/lib/libreadline.7.dylib
Many thanks! 👍
Thanks, wondering what causes this
Woked! for version 8
Bless you
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks!