I'm following this guide and trying to develop a Flask app to run on the Google App Engine. I followed the guide to the letter but when I launch the dev app server from the Launcher and go to http://localhost:8080/, I get a HTTP 500 error.
I check the logs and it says No module named flask
. Then I check the interactive console in the admin console by running import flask
and I get the same error message. I can import flask in any other python file without error.
Is there a way to fix this?