[Answer]-Error while installing libapache2-mod-wsgi on linux

1👍

libapache2-mod-wsgi is not a python package. You should install it via your distribution package manager. For example, if you are in a debian based distribution:

sudo apt-get install libapache2-mod-wsgi

Or if you are working with Python 3

sudo apt-get install libapache2-mod-wsgi-py3
👤cor

Leave a comment