1、django.core.exceptions.ImproperlyConfigured: The TEMPLATE_DIRS setting must be a tuple. Please fix your settings.
解决方法:
在项目的setting.py文件中修改相关的文件脚本
TEMPLATE_DIRS = (
os.path.join(os.path.dirname(__file__), ‘templates‘).replace(‘\\‘, ‘/‘),
)
2、“Unknown command syncdb” running “python manage.py syncdb”
由于使用了django1.9而1.9中的syncdb已被移除,因此如需创建数据库则应该使用python.exe manage.py createsuperuser
进行重新初始化数据库则需要使用一下方法python.exe manage.py migrate
时间: 2024-11-08 20:38:11