I keep getting this error when running the basic program.
ImportError: No module named flask
Here's the basic prog:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()
when I run which Flask on the folder it doesn't return the location. But if I run the pip install from there it says it's already installed.
pipfrom within the virtualenv? How did you create it?