-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ModuleNotFoundError: No module named 'flask.ext' #188
Comments
Using |
This is broken in here: https://github.com/thadeusb/flask-cache/blob/master/flask_cache/jinja2ext.py#L33 |
Use flaskext.cache |
Here's a q&d fix for the issue:
|
Use Flask-Caching instead https://github.com/sh4nks/flask-caching |
#192 has a pr for this |
File "/Users/steven/.pyenv/versions/3.5.3/lib/python3.5/site-packages/flask_cache/init.py", line 156, in init_app |
Fix for pip3 |
still not fixed! |
It works perfectly for me! Thank you. |
@frispete suggestion worked for me mostly
|
ERROR in Python3.6
from flask.ext.cache import make_template_fragment_key
Solution: change flask.ext.cache to flask_cache line33
line33: from flask_cache import make_template_fragment_key
#from flask.ext.cache import make_template_fragment_key
The text was updated successfully, but these errors were encountered: