Werkzeug AttributeError: 'module' object has no attribute 'InteractiveInterpreter'
The problem is that you have named your module code.py
. code
is a built in Python module that werkzeug uses.
To fix the problem, rename your code.py
to something else, and make sure you delete the code.pyc
file.