On Thu, Oct 16, 2008 at 8:46 AM, maumir <[EMAIL PROTECTED]> wrote: > > Thanks but I have not yet resolved. in the file "settings.py" I added > mysite.polls in > INSTALLED_APPS = ( > 'django.contrib.auth', > 'django.contrib.contenttypes', > ' django.contrib.sessions', > 'django.contrib.sites', > ' mysite. polls' > ) > with or without a comma after 'polls' is the same. >
You've got a space before 'polls' that you need to get rid of, but that's not what is causing this error. > > When launching the command > c:\django2\testproject> python manage.py runserver 8080 > I got > 'Error: No module named mysite' > All steps about environment configuration: python 2.6 e postgres 8.3 > went well and the steps of the tutorial 'http://docs.djangoproject.com/ > en/dev/intro/tutorial01/<http://docs.djangoproject.com/en/dev/intro/tutorial01/># > intro-tutorial01' so far > What can I do now? > > The tutorial gives you the command 'django-admin.py startproject mysite' to create your project directory. However based on the current directory name where you are running manage.py from, you appear to have changed 'mysite' to 'testproject'. That's OK, you can call your project 'testproject', but you need to consistently substitute it in places where the tutorial referes to 'mysite'. So in your INSTALLED_APPS you should have 'testproject.polls' and if you have any import statements that refer to 'mysite' they need to refer to 'testproject' instead. (Or you could rename your testproject directory to mysite and follow along in the tutorial more exactly.) Karen --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---