1. ホーム
  2. python

[解決済み] DjangoのDB設定「不適切な設定」エラー

2022-04-23 04:50:36

質問

Django (1.5) はうまく動いているのですが、あることを確認するために Python インタプリタ (Python 3) を起動すると、 - をインポートしようとしたときに奇妙なエラーが表示されます。 from django.contrib.auth.models import User -

Traceback (most recent call last):
  File "/usr/local/lib/python3.2/dist-packages/django/conf/__init__.py", line 36, in _setup
    settings_module = os.environ[ENVIRONMENT_VARIABLE]
  File "/usr/lib/python3.2/os.py", line 450, in __getitem__
    value = self._data[self.encodekey(key)]
KeyError: b'DJANGO_SETTINGS_MODULE'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.2/dist-packages/django/contrib/auth/models.py", line 8, in <module>
    from django.db import models
  File "/usr/local/lib/python3.2/dist-packages/django/db/__init__.py", line 11, in <module>
    if settings.DATABASES and DEFAULT_DB_ALIAS not in settings.DATABASES:
  File "/usr/local/lib/python3.2/dist-packages/django/conf/__init__.py", line 52, in __getattr__
    self._setup(name)
  File "/usr/local/lib/python3.2/dist-packages/django/conf/__init__.py", line 45, in _setup
    % (desc, ENVIRONMENT_VARIABLE))

django.core.exceptions.ImproperlyConfigured: Requested setting DATABASES, 
  but settings are not configured. You must either define the environment 
  variable DJANGO_SETTINGS_MODULE or call settings.configure() 
  before accessing settings.

Python インタープリタの外では正常に動作しているのに、どうして設定が不適切なのでしょうか?私の Django 設定では DATABASES の設定があります。

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': 'django_db', # Or path to database file if using sqlite3.
        # The following settings are not used with sqlite3:
        'USER': 'zamphatta',
        'PASSWORD': 'mypassword91',
        'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
        'PORT': '', # Set to empty string for default.
    }
}

...これはどのように不適切に設定されているのでしょうか?

解決方法は?

Python を起動していろいろ確認するだけでは、Django はあなたがどのプロジェクトで作業したいかを知りません。これらのうちどれかをしなければなりません。

  • 使用する python manage.py shell
  • 使用方法 django-admin.py shell --settings=mysite.settings (または、使用する設定モジュール)
  • 設定 DJANGO_SETTINGS_MODULE OSの環境変数に mysite.settings
  • (これは Django 1.6 で削除されました) 使用します。 setup_environ をpythonインタプリタに追加します。

    from django.core.management import setup_environ
    from mysite import settings
    
    setup_environ(settings)
    
    

当然ながら、最初の方法が一番簡単です。