I have an almost fresh install of django and when I try to python manage.py runserver.It is is giving me this error:
ImproperlyConfigured: WSGI applicati
I encountered the same problem because I added the debug_toolbar Middleware to my settings.py
'debug_toolbar.middleware.DebugToolbarMiddleware',
I solved the problem by removing the debug_toolbar Middleware. I also had to remove debug_toolbar from my INSTALLED APPS.