I am just starting with virtualenv, but I am trying to install gevent in a virtualenv environment (I am running Windows). When I use PIP from virtualenv, I get this error:
MyEnv>pip install gevent
Downloading/unpacking gevent
Running setup.py egg_info for package gevent
Please provide path to libevent source with --libevent DIR
The package index has MSI and EXE for installation on Windows (http://pypi.python.org/pypi/gevent/0.13.7), but I do not know how to install them in a virtualenv environment (or if possible). When I try to execute pip install gevent-0.13.7.win32-py2.7.exefrom promvvv, I also get the error message:
ValueError: ('Expected version spec in', 'D:\\Downloads\\gevent-0.13.7.win32-py2.7.exe', 'at', ':\\Downloads\\gevent-0.13.7.win32-py2.7.exe')
Does anyone know how to do this?
source
share