Avikalp Srivastava
Avikalp Srivastava

Reputation: 139

Unable to determine SOCKS version from socks

Using proxy connection (HTTP Proxy : 10.3.100.207, Port 8080). Using python's request module's get function, getting following error:

"Unable to determine SOCKS version from socks://10.3.100.207:8080/"

Upvotes: 5

Views: 14525

Answers (3)

sourab maity
sourab maity

Reputation: 1045

Try this:

unset all_proxy && unset ALL_PROXY

Upvotes: 1

Pascal KREZEL
Pascal KREZEL

Reputation: 61

I resolved this problem by removing "socks:" in_all_proxy.

Upvotes: 2

Madhu Kumar Dadi
Madhu Kumar Dadi

Reputation: 735

Try export all_proxy="socks5://10.3.100.207:8080" if you want to use socks proxy.

Else export all_proxy="" for no proxy. Hope This works. :D

Upvotes: 16

Related Questions