easy_install PyOpenSSL error

前端 未结 9 1837
时光取名叫无心
时光取名叫无心 2020-12-09 03:38

Any idea about what cause the error below ?

I use Linux centos with openssl-devel.i386 0.9.8e-12.el5_5.7

$ easy_install PyOpenSSL
Searching for PyOpe         


        
相关标签:
9条回答
  • 2020-12-09 04:31

    If you don't need to use the lastest pyOpenSSL, just rolled back to 0.12, this is the simplest way.

    pip install pyOpenSSL==0.12
    

    Check for @Jean-Paul's answer for detail.

    0 讨论(0)
  • 2020-12-09 04:31

    I couldn't install libssl-devel or libssl-dev, but this worked for me on CentOS 6 (when pyOpenSSL 0.13.1 was previously installed):

    sudo yum -y remove pyOpenSSL.x86_64
    sudo yum -y install libffi-devel
    #sudo yum -y install libssl-devel 
    sudo yum -y install openssl-devel 
    sudo yum -y install python-devel
    sudo pip install pyopenssl
    
    0 讨论(0)
  • 2020-12-09 04:32

    We had the same issue. Checking a bit we found a way to resolve it: https://bugs.launchpad.net/pyopenssl/+bug/845445

    What you're looking for is "Philip's fix works for me on CentOS 5.6:": https://bugs.launchpad.net/pyopenssl/+bug/845445/comments/9

    This worked well in our case.

    0 讨论(0)
提交回复
热议问题