DanMcInerney / elite-proxy-finder

Finds public elite anonymity proxies and concurrently tests them
250 stars 98 forks source link

gevent error #1

Closed robotsandcake closed 10 years ago

robotsandcake commented 10 years ago

Hello,

This looks really useful, but after cloning the repository and trying to run it on both OS X 10.9 and Raspbian I keep getting the following error:

Traceback (most recent call last):
  File "elite-proxy-finder.py", line 3, in <module>
    from gevent import monkeyImportError: No module named gevent

Tried to install gevent using Pip but no joy, I'm not very experienced using Linux or Python so I might be missing something entirely obvious! Can you help me out?

DanMcInerney commented 10 years ago

apt-get install python-dev apt-get install python-gevent

Should do it if you're on debian-based system. For RH system:

yum install python-devel yum install python-gevent

On Fri, Apr 18, 2014 at 10:33 AM, Stuart notifications@github.com wrote:

Hello,

This looks really useful, but after cloning the repository and trying to run it on both OS X 10.9 and Raspbian I keep getting the following error:

Traceback (most recent call last): File "elite-proxy-finder.py", line 3, in from gevent import monkeyImportError: No module named gevent

Tried to install gevent using Pip but no joy, I'm not very experienced using Linux or Python so I might be missing something entirely obvious! Can you help me out?

— Reply to this email directly or view it on GitHubhttps://github.com/DanMcInerney/elite-proxy-finder/issues/1 .

robotsandcake commented 10 years ago

Unfortunately that didn't work, I'm now getting the following error:

Traceback (most recent call last): 
  File "elite-proxy-finder.py", line 6, in <module>
    import requests      
ImportError: No module named requests 

Any ideas?

beng commented 10 years ago

@escapologyBB that just means you're missing the requests library pip install requests

coaxial commented 10 years ago

pip install xxx (xxx being whatever your system says is missing) solves the issue.