使用flask_cache时,报如下错误
进入
File “/home/tarena/.local/lib/python3.6/site-packages/flask_cache/backends.py”, line 2
把第2行
from werkzeug.contrib.cache import (baseCache, NullCache, SimpleCache, MemcachedCache,GAEMemcachedCache, FileSystemCache)
改为(注意:GAEMemcachedCache删除即可,否则会报错)
from cachelib import (baseCache, NullCache, SimpleCache, MemcachedCache,FileSystemCache)
然后进入终端安装一下cachelib
pip install cachelib
即可
原因:werkzeug.contrib已经在1.0版本被移除了,改成了一个单独的项目,叫cachelib
cachelib包里好像没有GAEMemcachedCache,
它是MemcachedCache的一个别名,估计是新版本把它舍弃了



