It appears that installation of flask-login has issues. Despite a successful install using the below
pip install flask-login
My app.py file:
from flaskext.login import LoginManager
lm = LoginManager()
I get this error :
ImportError: No module named login
So how do I resolve
There was a transition of the flask extension import way:
Use this import way with Flask 0.8 or later: