I have looked around for a while, and I was surprised not finding any information whether Gunicorn runs on Windows or not. Does anyone know if that is the case, and if so, where can I find some documentation about it?
Technically this is not an answer. But practically the answer I was looking for is how to run a WSGI web app (like Django) on Windows, and for those who got into this page because of that, here it is:
I'm using waitress now, very good alternative :)
Basically all you have to do is replace the gunicorn
call with:
waitress-serve --listen=*:8000 myapp.wsgi:application
For typical apps this will give you the same result as running gunicorn. :) Good luck!
waitress.serve(app, listen='0.0.0.0:5003')
where 5003
is my custom port and app
is app = Flask(__name__)
–
Stipendiary web: waitress-serve --port=$PORT myapp.wsgi:application
(inside Procfile), before pushing to heroku master. Use Hendy's answer ,i.e specify a port, if you are trying on heroku local –
Pegg Gunicorn is for a UNIX environment and is incompatible with Windows. Also for more info please refer to it's docs.
Edit: there's now a plan to add Windows support. https://github.com/benoitc/gunicorn/issues/524
No. Gunicorn doesn't run on Windows. It's very design is to take 'advantage of features in Unix/Unix-like kernels'.
gunicorn used not to run directly on Windows, but work (and pending issues being resolved) mean that you can make it work on Cygwin.
See https://github.com/benoitc/gunicorn/issues/407 ....
(Note: I update this answer because the bug has now been fixed)
Gunicorn does not support windows, although you can use waitress
I'm trying to Build ASGI app on windows using FASTAPI. FASTAPI is run on Gunicorn & Uvicorn server.I read the FASTAPI documentation to find out how to deploy my app on windows. They suggesting to use docker to deploy the app from windows. It turns out to be the best way to use Gunicorn on windows.
On Windows, you can install guvicorn like that:
pip install uvicorn gunicorn
And then, run your server using the notation available in https://www.uvicorn.org/. Example:
uvicorn myproject.asgi:application --host 127.0.0.1 --port 80 --reload
It's how I use in production and it's being consistent to serve my Django ASGI applications.
© 2022 - 2024 — McMap. All rights reserved.