本文介绍了无法从袜子中确定 SOCKS 版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用代理连接(HTTP 代理:10.3.100.207,端口 8080).使用python的请求模块的get函数,得到如下错误:
Using proxy connection (HTTP Proxy : 10.3.100.207, Port 8080).Using python's request module's get function, getting following error:
无法从socks://10.3.100.207:8080/确定SOCKS版本"
"Unable to determine SOCKS version from socks://10.3.100.207:8080/"
推荐答案
如果你想使用socks代理,试试export all_proxy="socks5://10.3.100.207:8080"
.
Try export all_proxy="socks5://10.3.100.207:8080"
if you want to use socks proxy.
Else export all_proxy=""
没有代理.希望这有效.:D
Else export all_proxy=""
for no proxy.Hope This works. :D
这篇关于无法从袜子中确定 SOCKS 版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!