爬虫报错requests.exceptions.ProxyError:/Failed to establish a new connection: [WinError 10061]

本人导致报错的可能原因:

下载软件所导致(可能性较小)

使用ip代理不当导致

报错:

requests.exceptions.ProxyError: HTTPSConnectionPool(host='www.baidu.com', port=443): Max retries exceeded with url: / (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError(': Failed to establish a new connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。')))

爬虫报错requests.exceptions.ProxyError:/Failed to establish a new connection: [WinError 10061]_第1张图片 

先上解决方案:

方案一

如果你使用的是requests库的话就添加这几行

import requests
session = requests.Session()
session.trust_env = False
url = 'https://www.baidu.com'
session.get(url)

如果你使用的是request_html库的话,就这样写

from requests_html import HTMLSession
session = HTMLSession()
session.trust_env = False
session.get(url)

session.trust_env = False 使用绕过系统代理

方案二

可以尝试换网,例如你现在是宽带就换wifi试一下或者是手机热点,本人就是宽带报错,但是换网之后就不报错

如果有更好的解决方案或者知道报错的根本原因是什么的话,请留言讨论

你可能感兴趣的:(爬虫,python)