Werkzeug AttributeError:'module'对象没有属性'InteractiveInterpreter'

时间:2011-10-24 19:26:46

标签: python flask werkzeug

在尝试使用app.run(debug=True)运行代码时使用Flask(0.8)和Werkzeug(0.8.1),我得到了下面描述的错误。使用app.run()

时没有错误

错误

Traceback (most recent call last):
File "code2.py", line 9, in <module>
    app.run(debug=True)
File "/<snip>/env/lib/python2.7/site-packages/Flask-0.8-py2.7.egg/flask/app.py", line 703, in run
    run_simple(host, port, self, **options)
File "/<snip>/env/lib/python2.7/site-packages/Werkzeug-0.8.1-py2.7.egg/werkzeug/serving.py", line 587, in run_simple
    from werkzeug.debug import DebuggedApplication
File "/<snip>/env/lib/python2.7/site-packages/Werkzeug-0.8.1-py2.7.egg/werkzeug/debug/__init__.py", line 14, in <module>
    from werkzeug.debug.tbtools import get_current_traceback, render_console_html
File "/<snip>/env/lib/python2.7/site-packages/Werkzeug-0.8.1-py2.7.egg/werkzeug/debug/tbtools.py", line 19, in <module>
    from werkzeug.debug.console import Console
File "/<snip>/env/lib/python2.7/site-packages/Werkzeug-0.8.1-py2.7.egg/werkzeug/debug/console.py", line 144, in <module>
    class _InteractiveConsole(code.InteractiveInterpreter):
AttributeError: 'module' object has no attribute 'InteractiveInterpreter'

代码(code.py)

from flask import Flask
app = Flask(__name__)

@app.route('/news/')
def news():
    pass

if __name__ == '__main__':
    app.run(debug=True)

重新创建错误的步骤

$ cd <project directory>
$ . env/bin/activate # Activates virtuanlenv environment (see below for packages)
$ python code.py

我的env / lib / python2.7 / site-packages(使用的各种库的版本)的内容来自virtualenv

Flask-0.8-py2.7.egg
Jinja2-2.6-py2.7.egg
pip-1.0.2-py2.7.egg
setuptools-0.6c11-py2.7.egg
Werkzeug-0.8.1-py2.7.egg

到目前为止,我试图解决这个问题,但没有帮助(不幸的是)

  • 广泛的谷歌搜索/ SO搜索
  • 严重简化我的代码
  • 通过easy_install
  • 删除已创建的virtualenv和所有库并重新安装

这里奇怪的是,昨晚,这段代码运行良好。今天早上,没有改变任何东西(我知道),代码无法正常运行。

非常感谢你的帮助!

2 个答案:

答案 0 :(得分:22)

问题是您已将模块命名为code.pycode是werkzeug使用的内置Python模块。

要解决此问题,请将code.py重命名为其他内容,并确保删除code.pyc文件。

答案 1 :(得分:0)

解决方案是您的文件名;不要将您的python文件名命名为code.pymain.pyFlask.pyos.pysystem.py。 相反,您可以使用code1.py之类的东西。