Thank you for the response.  Since there are 2 of them I have posted both.  
I have highlighted in yellow the places where they reside.  I have also 
attached the outer directory structure showing c:\djangoprojects and also a 
shot of the mysite structure.  I set this up as per the tutorial 
instructions or so I think I did.

mysite--->polls--->urls.py

from django.conf.urls import url

from . import views
urlpatterns = [
    url(r'^$', views.index, name='index'),
]


*mysite--->mysite--->urls.py*

from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
    url(r'^polls/', include('polls.urls')),
    url(r'^admin/', admin.site.urls),
]


On Sunday, January 31, 2016 at 10:07:21 AM UTC-5, [email protected] wrote:

> Hi,
> I am very new to Python and Django but not to programming. I have 
> been programming for 30 years. That said I am trying to work my way thru 
> the Django tutorial part 1 and I am confronted with the following error I 
> can't get past:
> Traceback (most recent call last):
>   File "urls.py", line 3, in <module>
>     from . import views
> SystemError: Parent module '' not loaded, cannot perform relative import
> Press any key to continue . . .
>
> I'm sure you will request additional information but at this point I'm not 
> sure what you will want to see.  I will post whatever you require.I have 
> started over 3 times with the same results.  I believe I have followed the 
> steps faithfully and I have setup the directory structures as you direct.  
> I didn't change anything. I'm running python 3.5.1 and Django 1.9.1. 
>
> I would appreciate any help getting thru this as its becoming very 
> frustrating
>
> Thanks
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1a0609f9-b163-4af7-b331-5cb1464407ff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to