码迷,mamicode.com
首页 > 其他好文 > 详细

爱特学习第一周

时间:2018-10-27 01:25:12      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:not   python   har   xxxx   方法   charm   tap   创建   程序   

1,创建第一个django程序

-命令行启动

django-admin startproject xxx(项目名)

cd xxx(进入该项目下)

python manage.py runserver

-pycharm启动

需要配置(配置python环境)

如果出现找不到文件,error2 可能是环境有问题——path or 软件内部

2,创建app

命令行启动

cd xxx(进入该项目下)

python manage.py startapp xxxx(app名称)

遇到的问题

在项目下创建的templates文件夹中html文件不可用

即TemplateDoesNotexist at/......html

解决方法:配置

1在setting.py中TEMPLATES下,‘DIRS‘改为‘DIRS‘:[os.path.join(BASE_DIR,"templates"]

2在setting.py中,INSTALLED_APPS下,添加‘xxx_app‘

 

爱特学习第一周

标签:not   python   har   xxxx   方法   charm   tap   创建   程序   

原文地址:https://www.cnblogs.com/zlszls3113373723/p/9859331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!