dyld: Symbol not found Homebrew Mac
Clash Royale CLAN TAG#URR8PPP
dyld: Symbol not found Homebrew Mac
I'm a little stuck here. I'm trying to install homebrew on my mac.
I've checked that I've install the xcode command line tools with
xcode-select --install
which tells me
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
I've tried
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
but that gets me an error, which reads:
dyld: lazy symbol binding failed: Symbol not found:
_SSL_CTX_set_alpn_protos
Referenced from: /Users/JustinJung/anaconda/bin/../lib/libcurl.4.dylib
Expected in: /Users/JustinJung/anaconda/bin/../lib/libssl.1.0.0.dylib
dyld: Symbol not found: _SSL_CTX_set_alpn_protos
Referenced from: /Users/JustinJung/anaconda/bin/../lib/libcurl.4.dylib
Expected in: /Users/JustinJung/anaconda/bin/../lib/libssl.1.0.0.dylib
Not sure what to do there. To clarify, I do not have XCode itself installed (I have macOS Sierra 10.12.6).
DYLD_LIBRARY_PATH
DYLD_LIBRARY_PATH
DYLD_LIBRARY_PATH=/usr/lib/:$DYLD_LIBRARY_PATH ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Your anaconda installation ships some libraries that interfere with the system ones. Do you have
DYLD_LIBRARY_PATH
env var set? Try the command withDYLD_LIBRARY_PATH
overridden:DYLD_LIBRARY_PATH=/usr/lib/:$DYLD_LIBRARY_PATH ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
– hoefling
Aug 12 at 16:49