I need to run my Django app.

I need help to get rid of this issues in my terminal.

Can you share the content of the file polls/urls.py?

Welcome @fidele !

Please do not post images of code or error messages. Copy/paste the text into the body of your post, marked as preformatted text.

2 Likes

Alright sir.Here is the issue i encounter.

PS C:\TEST\djangotutorial> Get-ExecutionPolicy    
Restricted
PS C:\TEST\djangotutorial> Set-ExecutionPolicy Unrestricted -Scope Process
PS C:\TEST\djangotutorial> myenv\Scripts\activate.ps1
(myenv) PS C:\TEST\djangotutorial> python manage.py runserver
Watching for file changes with StatReloader
Performing system checks...

Exception in thread django-main-thread:
Traceback (most recent call last):
  File "C:\TEST\djangotutorial\myenv\Lib\site-packages\django\urls\resolvers.py", line 720, in url_patterns
    iter(patterns)
    ~~~~^^^^^^^^^^
TypeError: 'module' object is not iterable

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.13_3.13.752.0_x64__qbz5n2kfra8p0\Lib\threading.py", line 1041, in _bootstrap_inner
    self.run()
    ~~~~~~~~^^
  File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.13_3.13.752.0_x64__qbz5n2kfra8p0\Lib\threading.py", line 992, in run
    self._target(*self._args, **self._kwargs)
    ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\TEST\djangotutorial\myenv\Lib\site-packages\django\utils\autoreload.py", line 64, in wrapper
    fn(*args, **kwargs)
    ~~^^^^^^^^^^^^^^^^^
  File "C:\TEST\djangotutorial\myenv\Lib\site-packages\django\core\management\commands\runserver.py", line 134, in inner_run
    self.check(display_num_errors=True)
    ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\TEST\djangotutorial\myenv\Lib\site-packages\django\core\management\base.py", line 486, in check
    all_issues = checks.run_checks(
        app_configs=app_configs,
    ...<2 lines>...
        databases=databases,
    )
  File "C:\TEST\djangotutorial\myenv\Lib\site-packages\django\core\checks\registry.py", line 88, in run_checks
    new_errors = check(app_configs=app_configs, databases=databases)
  File "C:\TEST\djangotutorial\myenv\Lib\site-packages\django\core\checks\urls.py", line 44, in check_url_namespaces_unique
    all_namespaces = _load_all_namespaces(resolver)
  File "C:\TEST\djangotutorial\myenv\Lib\site-packages\django\core\checks\urls.py", line 74, in _load_all_namespaces
    namespaces.extend(_load_all_namespaces(pattern, current))
                      ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^
  File "C:\TEST\djangotutorial\myenv\Lib\site-packages\django\core\checks\urls.py", line 63, in _load_all_namespaces
    url_patterns = getattr(resolver, "url_patterns", [])
  File "C:\TEST\djangotutorial\myenv\Lib\site-packages\django\utils\functional.py", line 47, in __get__
    res = instance.__dict__[self.name] = self.func(instance)
                                         ~~~~~~~~~^^^^^^^^^^
  File "C:\TEST\djangotutorial\myenv\Lib\site-packages\django\urls\resolvers.py", line 728, in url_patterns
    raise ImproperlyConfigured(msg.format(name=self.urlconf_name)) from e
django.core.exceptions.ImproperlyConfigured: The included URLconf '<module 'myapp.urls' from 'C:\\TEST\\djangotutorial\\myapp\\urls.py'>' does not appear to have any patterns in it. If you see the 'urlpatterns' variable with valid patterns in the file then the issue is probably caused by a circular import.

of course sir.Here you go:

from django.urls import path
from . import views

urlsppatterns = [
path(‘’,views.index,name=‘index’),
]

This is not the correct variable name. Review the tutorial.

Side Note: When posting code here, enclose the code between lines of three
backtick - ` characters. This means you’ll have a line of ```, then your code,
then another line of ```. This forces the forum software to keep your code
properly formatted. (I have taken the liberty of correcting your post.
Please remember to do this in the future.)

1 Like

Thank you sir.That’s kind of you. I will remember to do it next time.

I am just suggesting, there’s a site called stackoverflow.com which include lot of django related questions and answers and people will answer your questions and will help you to solve your issues. You can just Google the error messages or search directly in stackoverflow.com. :+1:

<opinion>
StackOverflow, as it relates to Django, has too much garbage for me to consider recommending it to someone just starting out.

Yes, there are some good answers there. But, it’s really tough to tell the good answers from the bad - and a person just starting out is not going to be in the position of being able to tell.

In some cases the information is simply dated. In others, it’s missing some context where an answer may be accurate in a limited sense, but not universally true.

I’ve seen, and have had to correct too many mistakes brought about by people who have blindly followed advice found on SO to ever recommend it as a primary resource.

(In particular, be extremely wary of answers that are old, and/or don’t specify the version of Django / Python involved, or don’t provide any reference to the documentation to support an answer.)

Use it as a starting point, sure. But be sure to follow that information up with reliable sources such as the documentation.
</opinion>

2 Likes

l._________ :+1: _________.l

hopefully you figured out your challenge?

(opinion as well) RE Stack overflow it’s a great place for all generalized info but especially for some of these simpler django specific problems i think it can get overwhelming and a bit antogonistic as well. Eg. someone will just comment that the answer is somewhere else despite the fact the beginners won’t have known that…