Hi,
I am relatively new to python and more or less completely new to pypy. So far I have pypy running on my raspberry pi. I don’t use virtualenv. Modules for pypy I simply installed via easy_installer from the pypy bin dir. I now try to get gevent installed. I found this remark: “stackless support - eventlet <http://eventlet.net/> just works and gevent <http://www.gevent.org/> requires pypycore<https://github.com/gevent-on-pypy/pypycore> and pypy-hacks <https://github.com/schmir/gevent/tree/pypy-hacks> branch of gevent (which mostly disables cython-based modules)” On the github site there is a small instruction on how to install gevent with pip in the virtualenv. $ virtualenv -p /path/to/bin/pypy venv $ source venv/bin/activate (venv)$ pip install git+git://github.com/schmir/gevent@pypy-hacks (venv)$ pip install cffi (venv)$ pip install git+git://github.com/gevent-on-pypy/pypycore (venv)$ export GEVENT_LOOP=pypycore.loop But I am not able to translate this into an installation with easy_install for my environment (without venv) Can someone give me a tip for getting started? Thanks Robert
_______________________________________________ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/pypy-dev