reiinakano / xcessiv

A web-based application for quick, scalable, and automated hyperparameter tuning and stacked ensembling in Python.
http://xcessiv.readthedocs.io
Apache License 2.0
1.27k stars 105 forks source link

ImportError: No module named wsgi #63

Open xialeizhou opened 6 years ago

xialeizhou commented 6 years ago

File "/usr/local/Cellar/python/2.7.14/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xcessiv/server.py", line 2, in from gevent.wsgi import WSGIServer ImportError: No module named wsgi

KhaledTo commented 6 years ago

Hi @xialeizhou I think in server.py

from gevent.wsgi import WSGIServer

has to be changed to:

 from gevent.pywsgi import WSGIServer
OhMyGodness commented 5 years ago

Hi @xialeizhou I think in server.py

from gevent.wsgi import WSGIServer

has to be changed to:

 from gevent.pywsgi import WSGIServer

I have meet this problem,how can I fix that?rewrite this server.py as you said,"from gevent.pywsgi import WSGIServer"?Or there is some other way to do it?