0

djangoappengineをセットアップしようとしています。ここでgit/bitbucketからコードを複製し(Googleからのいくつかのリンクをたどります)、django-testappにコピーして、自分のアプリケーション用に名前を変更しました。

しかし、python manage.pyrunserverはこれに遭遇します:

  Traceback (most recent call last):
  File "manage.py", line 11, in <module>
    execute_manager(settings)
  File "/Users/gimli/sandbox/iAgri/whipple/django/core/management/__init__.py", line 438, in execute_manager
    utility.execute()
  File "/Users/gimli/sandbox/iAgri/whipple/django/core/management/__init__.py", line 379, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/Users/gimli/sandbox/iAgri/whipple/django/core/management/__init__.py", line 261, in fetch_command
    klass = load_command_class(app_name, subcommand)
  File "/Users/gimli/sandbox/iAgri/whipple/django/core/management/__init__.py", line 67, in load_command_class
    module = import_module('%s.management.commands.%s' % (app_name, name))
  File "/Users/gimli/sandbox/iAgri/whipple/django/utils/importlib.py", line 35, in import_module
    __import__(name)
  File "/Users/gimli/sandbox/iAgri/whipple/djangoappengine/management/commands/runserver.py", line 5, in <module>
    from django.db import connections
  File "/Users/gimli/sandbox/iAgri/whipple/django/db/__init__.py", line 78, in <module>
    connection = connections[DEFAULT_DB_ALIAS]
  File "/Users/gimli/sandbox/iAgri/whipple/django/db/utils.py", line 94, in __getitem__
    conn = backend.DatabaseWrapper(db, alias)
  File "/Users/gimli/sandbox/iAgri/whipple/dbindexer/base.py", line 54, in DatabaseWrapper
    return Wrapper(merged_settings, *args, **kwargs)
  File "/Users/gimli/sandbox/iAgri/whipple/dbindexer/base.py", line 37, in __init__
    super(BaseDatabaseWrapper, self).__init__(*args, **kwargs)
  File "/Users/gimli/sandbox/iAgri/whipple/djangoappengine/db/base.py", line 290, in __init__
    self.ops = DatabaseOperations(self)
TypeError: __init__() takes exactly 1 argument (2 given)

私はグーグルで調べましたが、プロジェクトには時間の経過とともにこの種のエラーがあるようですが、どのソリューションも最新ではないようです。

どんな助けでもいただければ幸いです。

4

3 に答える 3

1

djangoappengineを実行するには、次のモジュールを取得してアプリのルートにコピーします。

1.オートロード

2. dbindexer

3.ジャンゴアプリエンジン

4.ジャンゴツールボックス

5.django (オプションだと思います)

django-testappを入手できます

于 2013-08-30T12:38:02.207 に答える
1

bitbucket のコードや allbuttonspressed のドキュメントは使用しないでください。

どちらも古くて時代遅れです。プロジェクトの新しいホームは次のとおりです。

http://django-nonrel.org/

そこには、まともなドキュメントと最新のダウンロード リンクがあります。

于 2013-04-19T12:06:19.390 に答える
0

allbuttonspressedドキュメントはかなり古く、特にインストールに関して更新する必要があります。幸いなことに、誰かがインストーラーを作成しました(私は試していません):

https://groups.google.com/forum/?fromgroups=#!topic/django-non-relational/Nlkh-zldQ6w

于 2013-03-21T23:39:25.313 に答える