Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http://pastebin.com/umBiCJvp这是回溯和设置。我正在使用 Django 1.2.3 版。
你确定你正在运行 Django 1.2.3。从 1.1 更改为 Django 1.2 时,此错误消息很常见(因为定义数据库设置的方式已更改)。
您可以通过运行检查您的 Django 版本,python manage.py shell然后:
python manage.py shell
import django print django.VERSION
那应该给你(1,2,3,'final',0)或类似的东西。如果它不是 1.2.x 那就是你的问题。
(1,2,3,'final',0)