web-dev-qa-db-ja.com

Django:AppRegistryNotReady()

Python:2.7; Django:1.7; Mac 10.9.4

Tango with Django のチュートリアルに従っています

第5章では、チュートリアルでは、作成を容易にするためにデータベースのデータを自動的に作成できるポピュレーションスクリプトの作成方法を説明します。

Manage.pyと同じレベルでpopulate_rango.pyを作成しました。

Populate_rango.pyは次のとおりです。

import os

def populate():
    python_cat = add_cat('Python')

    add_page(
        cat=python_cat,
        title="Official Python Tutorial",
        url="http://docs.python.org/2/tutorial/"
    )

    add_page(
        cat=python_cat,
        title="How to Think like a Computer Scientist",
        url="http://www.greenteapress.com/thinkpython/"
    )

    add_page(
        cat=python_cat,
        title="Learn Python in 10 Minutes",
        url="http://www.korokithakis.net/tutorials/python/"
    )

    Django_cat = add_cat("Django")

    add_page(
        cat=Django_cat,
        title="Official Django Tutorial",
        url="https://docs.djangoproject.com/en/1.5/intro/tutorial01/"
    )

    add_page(
        cat=Django_cat,
        title="Django Rocks",
        url="http://www.djangorocks.com/"
    )

    add_page(
        cat=Django_cat,
        title="How to Tango with Django",
        url="http://www.tangowithdjango.com/"
    )

    frame_cat = add_cat("Other Frameworks")

    add_page(
        cat=frame_cat,
        title="Bottle",
        url="http://bottlepy.org/docs/dev/"
    )

    add_page(
        cat=frame_cat,
        title="Flask",
        url="http://flask.pocoo.org"
    )

    for c in Category.objects.all():
        for p in Page.objects.filter(category=c):
            print "- {0} - {1}".format(str(c), str(p))


def add_page(cat, title, url, views=0):
    p = Page.objects.get_or_create(category=cat, title=title, url=url, views=views)[0]
    return p


def add_cat(name):
    c = Category.objects.get_or_create(name=name)[0]
    return c

if __== '__main__':
    print "Starting Rango population script..."
    os.environ.setdefault('Django_SETTINGS_MODULE', 'tangle.settings')
    from rango.models import Category, Page
    populate()

次に、python populate_rango.py manage.pyのレベルのターミナルで、AppRegistryNotReady()が発生します。

Django.core.exceptions.AppRegistryNotReady

それから私はそれをグーグルで調べたところ、 this

Standalone scripts¶
If you’re using Django in a plain Python script — rather than a management command — and you rely on the Django_SETTINGS_MODULE environment variable, you must now explicitly initialize Django at the beginning of your script with:

>>> import Django
>>> Django.setup()
Otherwise, you will hit an AppRegistryNotReady exception.

そして、私はまだ何をすべきかわからないのですが、誰か助けてもらえますか? THX!!!

36
user2988464

Djangoプロジェクトアプリケーションをスタンドアロンスクリプトで使用している場合、つまり_manage.py_を使用せずに-最初に手動でDjango.setup()を呼び出す必要があります-構成するロギングと、重要なこと- apps registry を設定します。

初期化プロセス docsからの引用:

セットアップ()

この関数は自動的に呼び出されます:

  • DjangoのWSGIサポートを介してHTTPサーバーを実行する場合。

  • 管理コマンドを呼び出すとき。

他の場合、例えばPythonスクリプトで)明示的に呼び出す必要があります。

あなたの場合は、setup()を手動で呼び出す必要があります:

_if __== '__main__':
    print "Starting Rango population script..."
    os.environ.setdefault('Django_SETTINGS_MODULE', 'tangle.settings')

    import Django
    Django.setup()

    populate()
_

また、この問題は トラブルシューティング セクションで詳しく説明されています。

55
alecxe

ローカル開発サーバーで同じ問題に出くわしました。

いくつかの変更されたコードをプルした後、エラーがスローされました。ここの問題は明らかにwsgiとは何の関係もないので、manage.pyを実行しようとしました。

シンプルな: python manage.pyは、実際のエラーの原因を明らかにします。

私の場合、外部Djangoアプリの忘れられたインポート。

たぶん、これは他の誰かを助けます。

3
normic

私はこのソリューションを見つけて、追加しました

from Django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

os.environ.setdefault ...
2
Valentin Kantor

また、ApacheサーバーでDjango 1.7を使用してこの問題に遭遇しました。wsgiハンドラー呼び出しを変更するwsgi.pyファイルは問題を修正しました:

import Django.core.handlers.wsgi
application = Django.core.handlers.wsgi.WSGIHandler()

これは、ユーザー 'jezdez'によって here が提案されました。

1
Chris Wood