Reputation: 89
I'm new for python. How can I get gevent-py2.7-win64.egg, my system is win32, and I need a 64bit module of gevent
Upvotes: 0
Views: 391
Reputation: 1383
Please get a windows installer from http://www.lfd.uci.edu/~gohlke/pythonlibs/
if your are using virtualenv,
- install gevent directly by exe file
- copy the generated files like gevent-0.13.8-py2.7.egg-info, gevent in your *%PYTHON_HOME%\Lib\site-packages* to your %VIRTUALENV%\Lib\site-packages directory, like D:\Dev\python\Envs\gotcha\Lib\site-packages
There you go! All done! Enjoy it.
Upvotes: 1
Reputation: 117
first test cmd easy_install gevent if failed, just go google python setuptools and then installed it and easy_install gevent just let the setuptools to help you choose the suitable module
Upvotes: 0