摘要:
如果直接在python shell使用django template有可能会出错,具体情况如下: 代码:1 from django import template2 t = template.Template('My name is {{ name }}.') 出错: 1 Traceback (most recent call last): 2 File "<pyshell#4>", line 1, in <module> 3 t = template.Template('My name is {{ name }}.' 阅读全文
摘要:
在windows 7系统上使用setup.py install的方法安装好django,然后在执行执行django-admin.pystartprojectmysite 新建站点的时候出现以下报错信息Traceback (most recent call last): File "G:\python\python27\Scripts\django-admin.py", line 2, in <module> from django.core import managementImportError: No module named django.core具体原因 阅读全文