17👍
✅
To check if it is installed:
$ dpkg -s libapache2-mod-wsgi
In case it is installed, you might check if it’s loaded by Apache:
$ apache2ctl -t -D DUMP_MODULES
12👍
Though you are on Ubuntu.
This might help someone else on CentOS, Fedora or Red Hat
rpm -q mod_wsgi
7👍
Since you’re on Ubuntu, which is Debian-based, you can look in /etc/apache2/mods-enabled
.
- Translating text blocks with Django .. what to do with the HTML?
- How to get all objects by instance in django
- How to rename a foreignkey field with South?
- How can filter parent based on children in django
1👍
if you working with python in Red Hat
search this for mod_wsgi installed or not yum search python3-mod_wsgi
or search this for module is loaded or not rpm -q python3-mod_wsgi
- Django Rest Framework – How to nest several fields in a serializer?
- Python – ERROR – failed to write data to stream: <open file '<stdout>', mode 'w' at 0x104c8f150>
- Initial Data for Django Inline Formsets
- Django how to turn off warning
- Django Proxy Field
Source:stackexchange.com