Reputation: 9102
On Linux I install Anaconda 4.3 for python2. When trying to run Anaconda after this, I have the following error:
RuntimeError: You are linking against OpenSSL 1.0.0, which is no longer support by the OpenSSL project. You need to upgrade to a newer version of OpenSSL.
Changing OpenSSL on my system does not fix the issue. Anaconda seems to be using its own openSSL version? Any help much appreciated.
Upvotes: 1
Views: 2023
Reputation: 9102
Anaconda is indeed coming with OpenSLL 1.0.0.
Adding
export CRYPTOGRAPHY_ALLOW_OPENSSL_100=1
to ~/.bashrc
fixed the issue by removing the version check.
Upvotes: 1