Error installing prettytable on ubuntu with pip

后端 未结 2 1087
暖寄归人
暖寄归人 2020-12-12 06:40

I just installed pip, installed a few packages np. I tried this

pip install prettytable
Collecting prettytable
From cffi callback 

        
相关标签:
2条回答
  • 2020-12-12 07:20

    The error comes from PyOpenSSL. Either your OpenSSL is too old or too new. Try upgrading or downgrading OpenSSL and PyOpenSSL.

    0 讨论(0)
  • 2020-12-12 07:36

    Reinstalling pyopenssl worked for me:

    pip uninstall pyopenssl
    pip install pyopenssl
    
    0 讨论(0)
提交回复
热议问题