tobegit3hub / simple_tensorflow_serving

Generic and easy-to-use serving service for machine learning models
https://stfs.readthedocs.io
Apache License 2.0
757 stars 195 forks source link

uWSGI breaks pip install on windows #57

Open ashbeats opened 5 years ago

ashbeats commented 5 years ago

Hi,

I'm trying to install simple_tensorflow_serving via pip, but uWSGI is not supported on windows.

Is there any specific reason why uWSGI is used in this project?

i was thinking of switching out uWSGI with Gunicorn or Waitress, and running a manual build.

would you recommend this approach for windows?

Thanks.

tobegit3hub commented 5 years ago

Sorry about that @ashbeats . The latest version of simple-tensorflow-serving(>=0.7.0) requires uwsgi to run by default. You may try install with pip install simple-tensorflow-serving==0.6.6 to use the older one .

In the future, we may support run simple-tensorflow-serving with multiple server backends including the flask internal server, uwsgi and others.