I am an experienced Java developer looking to get experience in Django and Python in general. I decided to start with the official Django tutorial but I am running into problems within the first few steps.

  1. I create a new Django project with the wizard:

  1. Continuing with the wizard, I make sure Enable Django admin is checked:

  1. The following directory structure is created:

  1. When I open up localhost:8000 I get the following error screen:

That error message appears despite INSTALLED_APPS being set to the following in settings.py:

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    # Uncomment the next line to enable the admin:
    'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
    'FirstDjangoProjects.polls',
)

I haven't changed anything, and the official tutorial suggests that I should just be able to launch this project. So what gives?

link|improve this question
1  
I don't see any obvious problem in the info you've shared, but i did want to suggest skipping the project creation wizard. it's very simple to set up a django project from the command line, and then you can do it inside of a virtualenv to keep your environment clean. You can still open the project in pycharm after doing that, just set the project python interpreter to the one in the virtualenv. A quick search turned up this: nerdydork.com/… – J.Spiral Dec 16 '11 at 5:34
2  
It seems to me you're doing too many things at once. Learn python by using django, and skip learning a Python IDE for now. Django is quite a large framework to begin with... IMHO you should start out with something even more basic, unless you know for sure django is what you want. – Derek Litz Dec 16 '11 at 5:53
1  
Have you followed these steps: docs.djangoproject.com/en/1.3/intro/tutorial02/…? I wouldn't rely on PyCharm to create the project for you - you'd better follow the tutorial as you'll learn a lot along the way. – LaundroMat Dec 16 '11 at 7:56
feedback

1 Answer

You need to make sure you edit urls.py to enable admin and run syncdb first before attempting to login to the admin.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.