I got issues in running my application with MySQLdb, like following.
Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
When python loading _mysql.cpython-37m-darwin.so file, it might load libssl.1.0.0 files. does it need to be specify version of openssl? cause 1.0.0 will reach EOL on 20190-12-31, it will be getting hard to install openssl 1.0.x with package manager.
FYI, Since openssl 1.0 will reach EOL on 2019-12-31, macOS Homebrew removed openssl@1.0 in there repository.
I got issues in running my application with MySQLdb, like following.
When python loading
_mysql.cpython-37m-darwin.so
file, it might load libssl.1.0.0 files. does it need to be specify version of openssl? cause 1.0.0 will reach EOL on 20190-12-31, it will be getting hard to install openssl 1.0.x with package manager. FYI, Since openssl 1.0 will reach EOL on 2019-12-31, macOS Homebrew removed openssl@1.0 in there repository.Thanks.