0

我正在尝试在我被引入的 Python/Google App Engine 项目上设置 Tipfy 扩展。我已按照运行 bootstrap.py 和 bin/buildout 的所有说明进行操作。一切似乎都奏效了,但现在当我尝试导入 tipfy.ext.auth 时,出现此错误:

File "C:\{project}\app\lib\dist\tipfy\ext\auth\__init__.py", line 15, in <module>
    from tipfy import abort, cached_property, import_string, redirect
ImportError: cannot import name cached_property

我现在有点迷茫,甚至不知道在哪里寻找解决方案,诚然,我对 Python 和 GAE 都非常陌生。任何有关如何使此扩展工作的帮助或指导将不胜感激。

4

1 回答 1

0

此处的潜在解决方案:http: //tipfy.googlecode.com/hg/docs/source/guide/migrating.rst
tl;dr:删除该导入并从 werkzeug 导入。

于 2012-03-14T23:42:31.547 回答