Mac OpenSSL not found/loading failed
OpenSSL is a secure socket layer cipher library, including the main cryptographic algorithms, commonly used key and certificate encapsulation management functions and SSL protocol, and provides a wealth of applications for testing or other purposes.
Mac OSX install new OpenSSL
Currently, Mac OSX can install the specified version of OpenSSL through brew.
Confirm the version and location of the installed OpenSSL
$ which openssl
Determine version
$ openssl version
Brew install OpenSSL
$ brew install openssl
Brew update OpenSSL
$ brew upgrade openssl
Brew force link to OpenSSL
$ brew link openssl –force
The above is the introduction of updating OpenSSL under Mac to the latest version.
An error occurred when installing the software through homebrew or other ways
Error running ‘requirements_ osx_ brew_ libs_ install openssl’Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib (LoadError)
It may be caused by not installing or environment variable problems (you can judge by inputting OpenSSL command in the terminal and viewing feedback information)
1. You can solve this problem by re installing OpenSSL
Steps to re install OpenSSL:
Remove OpenSSL (other versions may exist in the removal method. It is recommended to uninstall all versions through uninstall)
brew remove openssl
Uninstall all versions of OpenSSL
brew uninstall –force openssl
Install OpenSSL
brew install openssl
Configure environment variables
echo ‘export PATH=”/usr/local/opt/openssl/bin:$PATH”‘ >& gt; ~/. bash_ profile
div>