What you have to do is to delete the virtualenv you created. Then create a new virtualenv with:
virtualenv flask
Then:
cd flask
Then activate the virtualenv:
source bin/activate
Then install flask:
pip install flask
After that create a file named hello.py:
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()
Then run it with:
python hello.py
I hope this helps.