"ImportError: No module named flask" - Trouble with nginx + uWSGI + Flask in a virtualenv setup
- by vjk2005
I got nginx + uWSGI running on localhost inside a virtualenv with a simple hello world program, but I get this error when I replace the hello world with a simple Flask app:
File "./wsgi_configuration_module.py", line 1, in <module>
from flask import Flask
ImportError: No module named flask
unable to load app mountpoint
Here's the flask…