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'