Closed maxxer closed 5 years ago
After installing via pip3 and even after installing deps from py3-requirements.txt I got the following:
py3-requirements.txt
dirhunt https://www.aaa.net/ --proxies tor Welcome to Dirhunt v0.6.0 using Python 3.7.4 [ERROR] https://www.aaa.net/ (Missing dependencies for SOCKS support.) [ERROR] https://www.aaa.net/forums/posts/1471313/ (Missing dependencies for SOCKS support.) [ERROR] https://www.aaa.net/forums/posts/6369600/ (Missing dependencies for SOCKS support.)
I fixed by running pip3 install 'urllib3[socks]' (on macOS). Maybe worth mentioning at least in the docs?
pip3 install 'urllib3[socks]'
Yes, it is not in the documentation. I will add it, thanks :+1:
After installing via pip3 and even after installing deps from
py3-requirements.txt
I got the following:I fixed by running
pip3 install 'urllib3[socks]'
(on macOS). Maybe worth mentioning at least in the docs?