Django服务器无法运行,为什么?

时间:2013-01-14 01:43:11

标签: django

E:\ pythonwebproject \ pythonweb> python manage.py runserver 验证模型......

Unhandled exception in thread started by <function wrapper at 0x01DE69F0> 

Traceback (most recent call last): 

  File "C:\Python26\Lib\site-packages\django\utils\autoreload.py", line 93, in wrapper 
    fn(*args, **kwargs) 

  File "C:\Python26\Lib\site-packages\django\core\management\commands\runserver.py", line 92, in inner_r 

    self.validate(display_num_errors=True) 

  File "C:\Python26\Lib\site-packages\django\core\management\base.py", line 277, in validate 

    num_errors = get_validation_errors(s, app)

  File "C:\Python26\Lib\site-packages\django\core\management\validation.py", line 35, in get_validation_ 

    for (app_name, error) in get_app_errors().items(): 

  File "C:\Python26\Lib\site-packages\django\db\models\loading.py", line 166, in get_app_errors 

    self._populate() 

  File "C:\Python26\Lib\site-packages\django\db\models\loading.py", line 72, in _populate 
    self.load_app(app_name, True) 

  File "C:\Python26\Lib\site-packages\django\db\models\loading.py", line 96, in load_app 
    models = import_module('.models', app_name) 

  File "C:\Python26\Lib\site-packages\django\utils\importlib.py", line 35, in import_module 
    __import__(name) 

  File "C:\Python26\Lib\site-packages\django\contrib\auth\models.py", line 21, in <module> 
    from django.contrib.contenttypes.models import ContentType 

  File "C:\Python26\Lib\site-packages\django\contrib\contenttypes\models.py", line 127, in <module> 
    class ContentType(models.Model): 

  File "C:\Python26\Lib\site-packages\django\db\models\base.py", line 88, in __new__ 
    new_class.add_to_class('_meta', Options(meta, **kwargs)) 

TypeError: Error when calling the metaclass bases 
    __init__() keywords must be strings 

2 个答案:

答案 0 :(得分:2)

This bug report是我能找到的具有类似症状的唯一资源。你在用django 1.5吗?尝试将python安装升级到2.7,看看是否能解决问题。

答案 1 :(得分:1)

您正在使用Python 2.6的Django开发版(很快将是1.5)。它仅适用于2.7和3.3。您应该升级Python版本,或使用已发布的Django 1.4版。