繁体   English   中英

python manage.py runserver抛出错误

[英]python manage.py runserver throwing error

我是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. mkdir 测试
  2. 光盘测试/
  3. virtualenv 测试(对我来说将创建一个 python 2.7 env)
  4. 源测试/bin/激活
  5. pip 安装 django
  6. django-admin startproject thistest
  7. cd 这个测试/
  8. python manage.py runserver 0.0.0.0:8001

正在执行系统检查...

系统检查未发现任何问题(0 静音)。

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

'thistest.settings' 启动开发服务器在

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM