python请求ssl握手失败 [英] python requests ssl handshake failure

查看:32
本文介绍了python请求ssl握手失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

每次我尝试这样做:

requests.get('https://url') 

我收到了这条消息:

import requests
>>> requests.get('https://reviews.gethuman.com/companies') 
Traceback (most recent call last): 
   File "<stdin>", line 1, in <module> 
   File "/usr/lib/python2.7/dist-packages/requests/api.py", line 55, in get 
    return request('get', url, **kwargs) 
   File "/usr/lib/python2.7/dist-packages/requests/api.py", line 44, in request 
    return session.request(method=method, url=url, **kwargs)    
   File "/usr/lib/python2.7/dist-packages/requests/sessions.py", line 455, in request 
    resp = self.send(prep, **send_kwargs) 
   File "/usr/lib/python2.7/dist-packages/requests/sessions.py", line 558, in send 
    r = adapter.send(request, **kwargs) 
   File "/usr/lib/python2.7/dist-packages/requests/adapters.py", line 385, in send 
    raise SSLError(e) requests.exceptions.SSLError: [Errno 1]
_ssl.c:510: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure

我什么都试过了:

  • 更新我的请求
  • 更新我的 ssl

但没有任何变化.

我使用的是 Python 2.7.6,无法更改.

I am using Python 2.7.6, can't change this.

推荐答案

最后我解决了我的 ubuntu 从 14.04 更新到 14.10 问题解决了

I resolve the problem in the end i updated my ubuntu from 14.04 to 14.10 and the problem was solved

但是在旧版本的 ubuntu 和 python 中,我安装了这些库,它似乎解决了我所有的问题

but in the older version of ubuntu and python I install those lib and it seems to fix all my problems

sudo apt-get install python-dev libssl-dev libffi-dev
sudo pip2.7 install -U pyopenssl==0.13.1 pyasn1 ndg-httpsclient

如果你没有安装 pip2.7 你可以用 pip 代替

if you don`t have pip2.7 installed you can use pip instead

这篇关于python请求ssl握手失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆