I\'ve been following Sentdex\' Flask tutorial. He\'s using a Venv to set up his Flask, but didn\'t set his Python up to work with a Venv. I\'ve tried installing Flask globally -
According to http://modwsgi.readthedocs.io/en/develop/user-guides/virtual-environments.html.
You should edit /etc/apache2/sites-available/FlaskApp.conf
Add these above the WSGIScriptAlias
WSGIDaemonProcess FlaskApp python-home=/var/www/FlaskApp/FlaskApp/venv/FlaskApp
WSGIProcessGroup FlaskApp
I met the same problem and fix it by the way.