Changes between Initial Version and Version 1 of Ticket #27553
- Timestamp:
- Nov 29, 2016, 2:39:03 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27553
- Property Resolution → invalid
- Property Status new → closed
- Property Summary tutorial python manage.py runserver creates segmentation fault → tutorial python manage.py runserver creates NameError: name 'include' is not defined
-
Ticket #27553 – Description
initial v1 1 1 Hi there, I tried the tutorial / introduction to django and get stuck. I have installed django, verified that it is working : 2 ``` 2 {{{ 3 3 python 3.5.2:4def2a2901a5 on win32, and django 1.10.3 on mingw32 on a windows 10 machine. 4 ``` 4 }}} 5 5 6 6 I did not install a virtual environment. … … 12 12 The next step does not work though: 13 13 python manage.py runserver gives me this output 14 ``` 14 {{{ 15 15 Performing system checks... 16 16 … … 50 50 url(r'^polls/', include('polls.urls')), 51 51 NameError: name 'include' is not defined 52 }}}