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
I faced the same issue where got the error Missing dependencies for SOCKS support. with Anaconda Python 3.7
Missing dependencies for SOCKS support.
As conda command was working fine, I installed pysocks with the command conda install pysocks
conda
pysocks
conda install pysocks
This resolved the issue.