Error when installing Homebrew: dyld: Library not loaded: @rpath/libssl.1.0.0.dylib
homebrew, macos
Solution
You can resolve the issue by installing libssh2 via conda environment manager.
conda install libssh2
Problem
I'm trying to install Homebrew on my MacOS (macOS Mojave Version 10.14.3) And I keep getting the following error (the exact message I see in my terminal): ``` dyld: Library not loaded: @rpath/libssl.1.0.0.dylib Referenced from: /Users/[my_machine_name]/anaconda3/lib/libssh2.1.dylib Reason: image not found ``` I see a lot of solutions mentioning some brew related commands as part of their solution, but I'm trying to install brew here so I don't have brew yet. I'm wondering what I need to do? Edit: I'm using the following command to install brew: ``` /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" ```