andy
andy

Reputation: 89

How can I get gevent-py2.7-win64.egg

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

Answers (2)

Ace
Ace

Reputation: 1383

Please get a windows installer from http://www.lfd.uci.edu/~gohlke/pythonlibs/

if your are using virtualenv,

  1. install gevent directly by exe file
  2. 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

Daemoneye
Daemoneye

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

Related Questions