Closed robotsandcake closed 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 .
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?
@escapologyBB that just means you're missing the requests library
pip install requests
pip install xxx
(xxx being whatever your system says is missing) solves the issue.
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:
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?