使用 pip 在 ubuntu 上安装 prettytable 时出错
Error installing prettytable on ubuntu with pip
我刚装了pip,装了几个包np.我试过这个
pip install prettytable
Collecting prettytable
From cffi callback <function _verify_callback at 0x7f424837d6e0>:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/OpenSSL/SSL.py", line 313, in wrapper
_lib.X509_up_ref(x509)
AttributeError: 'module' object has no attribute 'X509_up_ref'
Could not find a version that satisfies the requirement prettytable (from versions: )
No matching distribution found for prettytable
如何安装 prettytable?
错误来自 PyOpenSSL
。您的 OpenSSL
太旧或太新。尝试升级或降级 OpenSSL
和 PyOpenSSL
.
重新安装 pyopenssl 对我有用:
pip uninstall pyopenssl
pip install pyopenssl
我刚装了pip,装了几个包np.我试过这个
pip install prettytable
Collecting prettytable
From cffi callback <function _verify_callback at 0x7f424837d6e0>:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/OpenSSL/SSL.py", line 313, in wrapper
_lib.X509_up_ref(x509)
AttributeError: 'module' object has no attribute 'X509_up_ref'
Could not find a version that satisfies the requirement prettytable (from versions: )
No matching distribution found for prettytable
如何安装 prettytable?
错误来自 PyOpenSSL
。您的 OpenSSL
太旧或太新。尝试升级或降级 OpenSSL
和 PyOpenSSL
.
重新安装 pyopenssl 对我有用:
pip uninstall pyopenssl
pip install pyopenssl