Hi, I'm following the tutorial at https://docs.djangoproject.com/en/1.9/intro/tutorial02/ and everything is going great until trying to access the admin site. I get the "Something went wrong [...] Error code: Unhandled Exception" screen.
I checked the error log and it shows this:
2015-12-07 19:33:39,319 : File "/home/numerand/mysite/polls/apps.py", line 1, in <module> 2015-12-07 19:33:39,320 : from django.apps import AppConfig 2015-12-07 19:33:39,320 :ImportError: No module named 'django.apps'
...don't know why django.apps isn't found. Any help much appreciated!
BTW, I made the recommended edits to the wsgi file for django versions 1.7+. Also found this release note (https://docs.djangoproject.com/en/1.9/releases/1.9/) and made the required edits to apps.py