Forums

No fixtures found error

I'm following the tutorial for getting Django up and running, found here: https://www.pythonanywhere.com/wiki/DjangoTutorial

The problem I'm having now is when I run the syncdb command initially. The process stops midway with a message saying "No fixtures found". I've setup Django many times locally and have never encountered this problem before. The tutorial makes no mention of fixtures. Any ideas?

That's not an error -- it's just an informational message from Django saying that as there are no fixtures, it won't install any. So you can carry on with the tutorial.

[EDIT] I've updated the tutorial to make that clearer.