django之创建第一个项目并查看网页效果
Posted Xiao|Deng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django之创建第一个项目并查看网页效果相关的知识,希望对你有一定的参考价值。
1、c盘下创建djangoweb文件夹
Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
2、C:\\Users\\Administrator>cd c:\\\\python27
3、c:\\Python27>cd c:\\\\djangoweb
#切换到djangoweb目录下之后创建项目
4、c:\\djangoweb>django-admin.py startproject helloworld
#切换到项目目录下
5、c:\\djangoweb>cd helloworld
#启动运行并查看网页效果
6、c:\\djangoweb\\helloworld>manage.py runserver
Validating models...
0 errors found
April 04, 2016 - 17:40:51
Django version 1.5.12, using settings \'helloworld.settings\'
Development server is running at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
[04/Apr/2016 17:41:04] "GET / HTTP/1.1" 200 1961
网页效果:
以上是关于django之创建第一个项目并查看网页效果的主要内容,如果未能解决你的问题,请参考以下文章