ImportError: Settings cannot be imported, because environment variable DJANGO_SETTINGS_MODULE is undefined.
出現這個錯誤問題的原因正如錯誤報告所寫:無法匯入 Settings, DJANGO_SETTINGS_MODULE 環境變數沒有定義。有以下幾種解決方法:
1). 最簡單的解決辦法是在專案或app當前目錄下,進入python命令介面時,使用python manager.py shell 代替 python。因為Django manager.py 會使用模板載入器自動查詢當前目錄下的settings.py 資訊,載入器檔案中包含from django.conf import settings匯入所需的django settings配置,就不會出錯了:
$ python manage.py shell
Python 2.7.1+ (r271:86832, Apr 11 2011, 18:05:24)
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from django import template
>>> t = template.Template('My name is {{ name }}.')
>>>
2). 若使用>>> python命令,則通過自己從正確的包中匯入settings並手動配置也可以:
$ python
Python 2.7.1+ (r271:86832, Apr 11 2011, 18:05:24)
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from django import template
>>> from django.conf import settings
>>> settings.configure()
Python Template 錯誤
相關文章
- ng-template 使用過程中引數傳遞錯誤的單步除錯除錯
- [python]python錯誤集錦Python
- Python錯誤處理Python
- Python:Template模板字串Python字串
- python錯誤與異常Python
- 針對python錯誤 format()PythonORM
- Python錯誤重試方法Python
- Python 新手常犯的錯誤Python
- Python部分錯誤總結Python
- Python 之 錯誤,除錯和測試Python除錯
- python中sklearn包的錯誤Python
- Python忽略warning警告錯誤Python
- Python錯誤:PyCharm 安裝出錯 Internal error,please。。。PythonPyCharmError
- Python學習之錯誤除錯和測試Python除錯
- 解決 Python UnicodeEncodeError 錯誤PythonUnicodeError
- Python UnboundLocalError和NameError錯誤根源解析PythonError
- python開發者常犯的10個錯誤Python
- Python檔案讀寫--錯誤一Python
- Python程式設計者共性錯誤Python程式設計
- Python中小錯誤 之 object() takes no parametersPythonObject
- python如何忽略警告(warning) 錯誤Python
- Python 錯誤 SyntaxError: invalid character in identifierPythonErrorIDE
- Python怎樣忽略warning警告錯誤?Python
- mongodb和python互動遇到的錯誤MongoDBPython
- python呼叫yolov3的小錯誤PythonYOLO
- Python錯誤集錦:IndentationError: unexpected indentPythonError
- python程式碼錯誤RuntimeError: Session is closedPythonErrorSession
- [python官方文件]8錯誤和異常Python
- Python 編碼錯誤的本質原因Python
- Python 入門最容易犯的錯誤Python
- Python開發者最常犯的10個錯誤Python
- 列印當前python檔案錯誤行Python
- Python 常見的17個錯誤分析Python
- python 用traceback列印錯誤訊息(轉)Python
- Python基礎之:Python中的異常和錯誤Python
- Python3 錯誤和異常介紹Python
- Python2.7安裝Scrapy錯誤處理Python
- Python requests-html扔多處理錯誤PythonHTML