Python's requests “Missing dependencies for SOCKS support” when using SOCKS5 from Terminal

后端 未结 14 980
南笙
南笙 2020-12-12 20:36

I\'m trying to interact with an API from my Python 2.7 shell using a package that relies on Python\'s requests. Thing is the remote address is blocked by my network (univers

14条回答
  •  天涯浪人
    2020-12-12 21:19

    This means that requests is using socks as a proxy and that socks is not installed.

    Just run pip install pysocks

提交回复
热议问题