Does Gunicorn run on Windows

后端 未结 6 1614
攒了一身酷
攒了一身酷 2020-12-07 18:30

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, w

相关标签:
6条回答
  • 2020-12-07 18:44

    Gunicorn does not support windows, although you can use waitress

    0 讨论(0)
  • 2020-12-07 18:53

    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)

    0 讨论(0)
  • 2020-12-07 18:54

    Gunicorn is for a UNIX environment and is incompatible with Windows. Also for more info please refer to it's docs.

    0 讨论(0)
  • 2020-12-07 18:58

    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!

    0 讨论(0)
  • 2020-12-07 19:01

    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.

    0 讨论(0)
  • 2020-12-07 19:02

    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'.

    0 讨论(0)
提交回复
热议问题