I\'m unable to find a module in python ,though easy_install says its already installed. Any idea how to resolve this isseue?
$ python -c \"from flaskext.sql
Did you install flask-sqlalchemy? It looks like you have SQLAlchemy installed but not the Flask extension. Try pip install Flask-SQLAlchemy in your project's virtualenv to install it from PyPI.
pip install Flask-SQLAlchemy