发布于 2015-02-02 12:55:24 | 300 次阅读 | 评论: 1 | 来源: 网友投递
Django Python WEB开发框架
Django是一个开放源代码的Web应用框架,由Python写成。采用了MVC的软件设计模式,即模型M,视图V和控制器C。它最初是被开发来用于管理劳伦斯出版集团旗下的一些以新闻内容为主的网站的,即是CMS(内容管理系统)软件。并于2005年7月在BSD许可证下发布。这套框架是以比利时的吉普赛爵士吉他手Django Reinhardt来命名的。
本文为大家讲解的是django配置settings时错误:Could not import settings 'conf.local'的解决方法,感兴趣的同学参考下。
举个例子吧
Django最佳实践与部署:Nginx + Gunicorn + Supervisor(Ubuntu和CentOS)
http://sfdye.com/articles/django-best-practice-and-deployment-with-nginx-gunicorn-and-supervisor/
结果出现runserver --settings=...的时候出现报错Could not import settings 'conf.local' (Is it on sys.path? Is there an import error in the settings file?): N
o module named conf.local
怎么调整也找不到,很是奇怪
最后发现 原来又是这个万恶的
init.py
一定要在自建的文件夹里面建立这个空文件才会被django扫描为模块啊....