2

manage.py runserver を使用して django 開発サーバーを起動しようとすると問題が発生します。私はdjangoが初めてなので、サーバーを実行しようとするのはこれが初めてです。次のエラーが表示されます: モデルを検証しています...

Unhandled exception in thread started by <bound method Command.inner_run of <dja
ngo.contrib.staticfiles.management.commands.runserver.Command object at 0x000000
00033E8278>>
Traceback (most recent call last):
  File "C:\Python33\lib\site-packages\django\core\management\commands\runserver.
py", line 92, in inner_run
    self.validate(display_num_errors=True)
  File "C:\Python33\lib\site-packages\django\core\management\base.py", line 277,
 in validate
    num_errors = get_validation_errors(s, app)
  File "C:\Python33\lib\site-packages\django\core\management\validation.py", lin
e 32, in get_validation_errors
    for (app_name, error) in get_app_errors().items():
  File "C:\Python33\lib\site-packages\django\db\models\loading.py", line 164, in
 get_app_errors
    self._populate()
  File "C:\Python33\lib\site-packages\django\db\models\loading.py", line 70, in
_populate
    self.load_app(app_name, True)
  File "C:\Python33\lib\site-packages\django\db\models\loading.py", line 94, in
load_app
    models = import_module('.models', app_name)
  File "C:\Python33\lib\site-packages\django\utils\importlib.py", line 35, in im
port_module
    __import__(name)
  File "C:\Python33\lib\site-packages\django\contrib\auth\models.py", line 15, i
n <module>
    from django.contrib.auth.hashers import (
  File "C:\Python33\lib\site-packages\django\contrib\auth\hashers.py", line 8, i
n <module>
    from django.test.signals import setting_changed
  File "C:\Python33\lib\site-packages\django\test\__init__.py", line 6, in <modu
le>
    from django.test.testcases import (TestCase, TransactionTestCase,
  File "C:\Python33\lib\site-packages\django\test\testcases.py", line 923, in <m
odule>
    _ImprovedEvent = threading._Event
AttributeError: 'module' object has no attribute '_Event'

助けてください....

4

1 に答える 1

2

Python 3 を使用しているため、このエラー メッセージが表示されます。

Django 1.5 では、Python 3.x を実験的にサポートします。以前のバージョンの Django を使用している場合は、代わりに Python 2.x を使用する必要があります。

于 2012-11-12T19:39:07.687 に答える