On 10/8/07, Bourne <[EMAIL PROTECTED]> wrote: > > Hello everybody, > > I am new to Django.... I have hard time installing > django. I am following every step of tutorials in the website > djangoproject.com. ... > OperationalError: no such table: polls_poll > > Getting this error PLEASE HELP
Somewhere along the line you have missed a step - you haven't run: ./manage.py syncdb This command creates the database tables. As a result, your database doesn't contain the table for the 'poll' model, and Django complains. If you run the syncdb, all should be well. Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---