user3084860
user3084860

Reputation: 461

Django Runserver Never Starts

When I run the runserver command, the commandline stops at:

from django.utils import importlib, six, dateparse

And doesn't go any further. The process never ends and it won't stop loading. What would cause it to freeze at that point?

Upvotes: 0

Views: 111

Answers (1)

user3084860
user3084860

Reputation: 461

Turns out I had one or two:

django.setup()

lines sprinkled in some files. When I removed them, the server was able to run again.

Upvotes: 1

Related Questions