Graham Dumpleton
Graham Dumpleton
FWIW, my recollection of Tornado apps are that they require an async server. Trying to use Tornado, although think it has a mode for doing so under WSGI, brings severe...
Let me try and summarise a few things. You are using: * https://www.tornadoweb.org/en/stable/wsgi.html So basically not using Tornado as async, but trying to live with its shortcoming when using it...
What are you doing then to run your Django application?
Which is what I said above I suspected you were doing. The problem you are having has nothing to do with Apache/mod_wsgi which is what this issue tracker is for....
You are better off not using configure/make/make install method on macOS, use the `pip install mod_wsgi` method instead. See: * https://pypi.org/project/mod-wsgi/ * https://www.youtube.com/watch?v=H6Q3l11fjU0 Same restrictions about using Homebrew Apache, and...
The APR package has been broken on macOS for a very long time and doesn't work without patching it. As a consequence, you can't use `mod_wsgi-httpd` on macOS. Use Apache...
Don't use Python 2.7, use Python 3.X.
Where did you get your Python 2.7 install from? M1 (arm64) macOS doesn't have Python 2.7. Where ever it came from it hasn't been setup correctly and has a broken...
What version of macOS are you running? Python 2.7 was removed from macOS in 12.3. https://developer.apple.com/documentation/macos-release-notes/macos-12_3-release-notes#Python If you go to Preferences in Xcode and look at Platforms, what macOS version...
Only suggestion can make is to install `pyenv` from HomeBrew and use it to install Python 2.7.X. Do note that when you do this you must customize the pyenv configuration...