builtins.RuntimeError
RuntimeError: signalling support is unavailable because the blinker library is not installed.
Traceback (most recent call last)
return self.wsgi_app(environ, start_response)
response = self.handle_exception(e)
reraise(exc_type, exc_value, tb)
raise value
response = self.full_dispatch_request()
rv = self.handle_user_exception(e)
reraise(exc_type, exc_value, tb)
raise value
rv = self.preprocess_request()
rv = func()
-
File “f:\python\python361\lib\site-packages\flask_debugtoolbar_init_.py”, line 151 , in
process_request
DebugToolbar(real_request, self.jinja_env))
self.create_panels()
-
File “f:\python\python361\lib\site-packages\flask_debugtoolbar\toolbar.py”, line 34 , in
create_panels
context=self.template_context)
-
File “f:\python\python361\lib\site-packages\flask_debugtoolbar\panels\template.py”, line 37 , in
__init__
template_rendered.connect(self._store_template_info)
raise RuntimeError('signalling support is unavailable ’
RuntimeError: signalling support is unavailable because the blinker library is not installed.
The debugger caught an exception in your WSGI application. You can now look at the traceback which led to the error.
To switch between the interactive traceback and the plaintext one, you can click on the “Traceback” headline. From the text traceback you can also create a paste of it. For code execution mouse-over the frame you want to debug and click on the console icon on the right side.
You can execute arbitrary Python code in the stack frames and there are some extra helpers available for introspection:
dump()
shows all variables in the framedump(obj)
dumps all that’s known about the object