python manage.py runserver抛出错误

时间:2017-10-11 07:20:20

标签: python django

我是python的新手。我给出了以下命令:

django-admin startproject webserver

这创建了一个骨架项目。在此之后,我跑了

python manage.py runserver 0.0.0.0:8001

我收到下面给出的错误。我无法启动服务器。请指导我?

C:\training\webserver\webserver>python manage.py runserver 0.0.0.0:8001
Unhandled exception in thread started by <function wrapper at 0x0000000003C872E8>
Traceback (most recent call last):
  File "C:\Python27\lib\site-packages\django\utils\autoreload.py", line 228, in wrapper
    fn(*args, **kwargs)
  File "C:\Python27\lib\site-packages\django\core\management\commands\runserver.py", line 117, in inner_run
    autoreload.raise_last_exception()
  File "C:\Python27\lib\site-packages\django\utils\autoreload.py", line 251, in raise_last_exception
    six.reraise(*_exception)
  File "C:\Python27\lib\site-packages\django\utils\autoreload.py", line 228, in wrapper
    fn(*args, **kwargs)
  File "C:\Python27\lib\site-packages\django\__init__.py", line 27, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "C:\Python27\lib\site-packages\django\apps\registry.py", line 108, in populate
    app_config.import_models()
  File "C:\Python27\lib\site-packages\django\apps\config.py", line 202, in import_models
    self.models_module = import_module(models_module_name)
  File "C:\Python27\lib\importlib\__init__.py", line 37, in import_module
    __import__(name)
  File "C:\Python27\lib\site-packages\django\contrib\auth\models.py", line 299, in <module>
    class AbstractUser(AbstractBaseUser, PermissionsMixin):
  File "C:\Python27\lib\site-packages\django\db\models\base.py", line 279, in __new__
    new_class.add_to_class(field.name, new_field)
  File "C:\Python27\lib\site-packages\django\db\models\base.py", line 325, in add_to_class
    value.contribute_to_class(cls, name)
  File "C:\Python27\lib\site-packages\django\db\models\fields\__init__.py", line 709, in contribute_to_class
    cls._meta.add_field(self)
  File "C:\Python27\lib\site-packages\django\db\models\options.py", line 277, in add_field
    self.local_fields.insert(bisect(self.local_fields, field), field)
  File "C:\Python27\lib\functools.py", line 56, in <lambda>
    '__lt__': [('__gt__', lambda self, other: other < self),
  File "C:\Python27\lib\functools.py", line 56, in <lambda>
    '__lt__': [('__gt__', lambda self, other: other < self),

1 个答案:

答案 0 :(得分:1)

在正确创建过程中,您可能会错过一些步骤。 我刚刚在我的机器上测试了这个步骤:

  1. mkdir test
  2. cd test /
  3. virtualenv测试(对我来说将创建一个python 2.7 env)
  4. 源测试/ bin / activate
  5. pip install django
  6. django-admin startproject thistest
  7. cd thistest /
  8. python manage.py runserver 0.0.0.0:8001
  9.   

    执行系统检查......

         

    系统检查发现没有问题(0静音)。

         

    2017年10月11日 - 15:57:18 Django版本1.11.6,使用设置

         

    'thistest.settings'在

    启动开发服务器      

    http://0.0.0.0:8001/使用CONTROL-C退出服务器。

    一切正常,请检查您是否遵循了相同的步骤

相关问题