Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

when I import server, there comes the error, no module named 'gevent.wsgi' #71

Closed
cherrylawrence opened this issue Jun 15, 2018 · 4 comments

Comments

@cherrylawrence
Copy link

from quiver_engine import server

ImportError Traceback (most recent call last)
in ()
----> 1 from quiver_engine import server

~\Anaconda3\envs\tensorflow\lib\site-packages\quiver_engine\server.py in ()
11 from flask_cors import CORS
12
---> 13 from gevent.wsgi import WSGIServer
14
15 from quiver_engine.util import (

ImportError: No module named 'gevent.wsgi'

@jakebian
Copy link
Member

Try (re)installing gevent?

@jmgo
Copy link

jmgo commented Jun 18, 2018

I had the same problem and I fixed by changing

from gevent.wsgi import WSGIServer
to
from gevent.pywsgi import WSGIServer

@jakebian
Copy link
Member

Should be fixed by the newly merged PR

@jakebian
Copy link
Member

#72

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants