当我尝试在任何Python版本上导入ssl
时,我得到了
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.5/ssl.py", line 98, in <module>
import _ssl # if we can't import it, let the error propagate
ImportError: /lib/x86_64-linux-gnu/libssl.so.1.0.0: symbol X509_chain_up_ref, version
OPENSSL_1.0.2 not defined in file libcrypto.so.1.0.0 with link time reference
我自己使用libssl-dev
版本1.0.2
编译了Python 3.5。根据资质,我安装了libssl1.0.0.0
版本1.0.2
和openssl
版本1.0.2
。
libssl
,openssl
和libssl-dev
的不同版本似乎存在问题,但我已经通过软件包管理器重新安装了所有这些版本的最新版本。< / p>
我正在使用Ubuntu 15.10 64位