执行manage.py syncdb提示Unknown command: 'syncdb'

Posted 风清扬001

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了执行manage.py syncdb提示Unknown command: 'syncdb'相关的知识,希望对你有一定的参考价值。

1. 实验环境

ubuntu14.4 + django1.9.7

2. 问题描述

在配置完数据库mysite/settings.py后,通常需要运行

python manage.py syncdb

为数据库中每个应用建立一个数据库表。
然而如果你安装的Django Version >= 1.9,那么会出现如下问题:

[email protected]:~/django_try/mysite$ python manage.py syncdbUnknown command: ‘syncdb‘Type ‘manage.py help‘ for [email protected]:~/django_try/mysite$ python manage.py syncdbpython manage.py syncdbUnknown command: ‘syncdbpython‘Type ‘manage.py help‘ for usage.

3. 解决方法

在stackoverflow上找到原因和解决方法:
syncdb is deprecated because of the migration system.
Now you can log your changes using makemigrations. This transforms your model changes into python code to make them deployable to another databases.
After you created the migrations you have to apply them: migrate.
So instead of using syncdb you should use makemigrations and then migrate.

简言之:在Django 1.9及未来的版本种使用migrate代替syscdb.

./manage.py migrate

 

以上是关于执行manage.py syncdb提示Unknown command: 'syncdb'的主要内容,如果未能解决你的问题,请参考以下文章

执行python manage.py syncdb,报Unknown command: 'syncdb'

运行“python manage.py syncdb”的“未知命令 syncdb”

python manage.py syncdb Unknown command: 'syncdb'问题解决方法

python manage.py syncdb 不工作

DJango数据库报错 python manage.py syncdb

Django manage.py syncdb 不工作