Django无法使用"python manage.py syncdb"创建默认表命令 [英] Django unable to create default table using "python manage.py syncdb" command

查看:50
本文介绍了Django无法使用"python manage.py syncdb"创建默认表命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是Django的新手.我正在按照教程中给出的说明进行操作.当我运行 python manage.py syncdb 时,出现以下错误:

I am new to Django. I am following the instructions given in the tutorial. When I am running python manage.py syncdb, I am getting the following error:

D:\MyDev\DjnagoProject\mysite>python manage.py syncdb
Traceback (most recent call last):
  File "manage.py", line 9, in <module>
    execute_from_command_line(sys.argv)
  File "C:\Python27\lib\site-packages\django\core\management\__init__.py", line 420, in execute_from_command_
line
    utility.execute()
  File "C:\Python27\lib\site-packages\django\core\management\__init__.py", line 359, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "C:\Python27\lib\site-packages\django\core\management\base.py", line 196, in run_from_argv
    self.execute(*args, **options.__dict__)
  File "C:\Python27\lib\site-packages\django\core\management\base.py", line 232, in execute
    output = self.handle(*args, **options)
  File "C:\Python27\lib\site-packages\django\core\management\base.py", line 371, in handle
    return self.handle_noargs(**options)
  File "C:\Python27\lib\site-packages\django\core\management\commands\syncdb.py", line 57, in handle_noargs
    cursor = connection.cursor()
  File "C:\Python27\lib\site-packages\django\db\backends\dummy\base.py", line 15, in complain
    raise ImproperlyConfigured("You haven't set the database ENGINE setting yet.")
django.core.exceptions.ImproperlyConfigured: You haven't set the database ENGINE setting yet.

添加信息:Python版本:2.7.2,django版本:(1,4,0,'alpha',1)操作系统:Windows XP

Adding information : Python version : 2.7.2, django version : (1, 4, 0, 'alpha', 1) OS : windows XP

请让我知道我在哪里犯错.

Please let me know where I am making a mistake.

推荐答案

阅读错误消息:

配置不正确:您尚未设置数据库ENGINE设置

在您的计算机中检查 DATABASES settings.py .您至少需要 ENGINE 数据库 NAME

Check DATABASES in your settings.py. You need at least ENGINE and database NAME

这篇关于Django无法使用"python manage.py syncdb"创建默认表命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆