1# While you should definitely avoid circular dependencies,
2# you can defer imports in python.
3# for example:
4
5import SomeModule
6
7def someFunction(arg):
8 from some.dependency import DependentClass
9
10#this ( at least in some instances ) will circumvent the error.
1#it may be that you are using a diiferent version of django try the following
2from django.conf.urls import include
3