Django 设置错误
如何在 Window Xp 和 Ubuntu 操作系统中设置 Django 我完成了连接数据库的步骤以及连接到管理员的一些问题。 我通过阅读电子书来做到这一点并做到这一点..所以对我来说有任何简单的步骤.. 请分享所有想法。
How can I set up Django in Window Xp and Ubuntu OS
I finished the step for connection with Database and some problem with connect to admin..
I do it from reading ebook and do it..So there is any easy steps for me..
Please share all idea.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你看过 Brett Hayden 的 关于实用 Django 项目的笔记吗?它包含对第二版(针对 Django 1.*)中出现的错误的更正,并填充了缺失的信息。
),它们是:
和
至于取消注释
urls.py
中的行以获取 Django admin(即删除开头的哈希符号:#
另外,在
settings.py
中,您需要添加:到列表中
最后,如果您需要它,Phil Gyford 已将 Bitbucket 上第二版的完成代码。
Have you seem Brett Hayden's notes on Practical Django Projects? It contains corrections to errors that crept into the 2nd edition (for Django 1.*) and fills in the missing information.
As for uncommenting the lines in
urls.py
to get Django admin (i.e. remove the hash symbol at the start:#
), they're the ones that read:and
and
plus, in
settings.py
you need to add:to the list
Finally, if you need it, Phil Gyford has put the finished code from the 2nd edition on Bitbucket.