码迷,mamicode.com
首页 > 其他好文 > 详细

django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)

时间:2019-02-16 09:19:48      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:def   ESS   conf   call   pytho   request   rop   解决办法   开发   

在python的开发中,遇到了这个错误:
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
解决方法如下:
在代码文件的最上方,添加如下代码:

import os,django
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "project_name.settings")# project_name 项目名称
django.setup()

django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)

标签:def   ESS   conf   call   pytho   request   rop   解决办法   开发   

原文地址:https://www.cnblogs.com/apollo1616/p/10386677.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!