AttributeError: 'Settings' object has no attribute 'ROOT_URLCONF'

前端 未结 2 967
耶瑟儿~
耶瑟儿~ 2020-12-11 00:17

Following on from my last question Error: No module named psycopg2.extensions, I have updated my mac OS to Mountain Lion and installed Xcode. I have also installed psycopg2

2条回答
  •  不知归路
    2020-12-11 00:52

    From django docs:

    A Django settings file contains all the configuration of your Django installation. When you use Django, you have to tell it which settings you're using. Do this by using an environment variable, DJANGO_SETTINGS_MODULE.

    The value of DJANGO_SETTINGS_MODULE should be in Python path syntax, e.g. mysite.settings. Note that the settings module should be on the Python import search path.

    And

    ROOT_URLCONF

    Default: Not defined

    A string representing the full Python import path to your root URLconf. For example: "mydjangoapps.urls". Can be overridden on a per-request basis by setting the attribute urlconf on the incoming HttpRequest object. See How Django processes a request for details.

提交回复
热议问题