gpt4 book ai didi

python-2.7 - django 核心异常配置不当 :

转载 作者:行者123 更新时间:2023-12-01 02:14:54 26 4
gpt4 key购买 nike

django.core.exceptions.ImproperlyConfigured:

The TEMPLATE_DIRS setting must be a tuple. Please fix your settings.


这是我的 settings.py 文件代码
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
)

STATIC_URL = "/static/"
ROOT_URLCONF = "%s.urls" % PROJECT_DIR
TEMPLATE_DIRS = full_path("Home/Downloads/django-socketio-master/djangosocketio/templates")
#LOGIN_URL = "/admin/"

最佳答案

似乎提供给 TEMPLATE_DIRS 的路径是不正确的。
您可以提供类似的路径

import os
PROJECT_PATH = os.path.dirname(os.path.realpath(__file__))

TEMPLATE_DIRS = (os.path.join(PROJECT_PATH, '../templates'),)

哪里 templates是您的模板所在的目录。

关于python-2.7 - django 核心异常配置不当 :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25909833/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com