Python Template 錯誤

來源:互聯網
上載者:User

標籤:

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 錯誤

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.