Home 解决urllib3.exceptions.ProtocolError问题
Post
Cancel

解决urllib3.exceptions.ProtocolError问题

今天在用requests的post方法上传图片时出现如下问题:

1
urllib3.exceptions.ProtocolError: ('Connection aborted.', ConnectionResetError(10054, '远程主机强迫关闭了一个现有的连接。', None, 10054, None))

原因是urllib3的版本问题。

使用:

1
pip install git+https://github.com/shazow/urllib3

即可

This post is licensed under CC BY 4.0 by the author.