I am very confused about viewing a sample application on github with python/flask.
Here is my situation. I have followed all the instructions to develop a separate application with the official Flask documentation found here
Flask Official Docs for Installation. I want to now incorporate bootstrap onto my application but before I do this I want to check out a sample repository found here Github bootstrap-flask. When I try to run python frontend.py
I receive this error:
File "frontend.py", line 8, in <module>
from flask import Blueprint, render_template, flash, redirect, url_for
ImportError: No module named flask
I don't understand how to fix this. I know that I have isolated my development application that I am working on in a virtual environment using venv. Am I supposed to do this with the bootstrap-flask github repo to view it? When I try to execute virtualvenv application
or pip install something
my system says I don't have the packages but I clearly do because I executed the easy_install instructions for both pip and virtualvenv on my Mac OSX. I don't understand the workflow. How does one view a flask application from Github?
Do you virtualvenv, git clone, and then pip install all the dependencies? Help would be appreciated. Thank you.