码迷,mamicode.com
首页 > Windows程序 > 详细

Django在Win7下安装与创建项目hello word示例

时间:2014-07-15 10:05:54      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   art   line   re   

Django在Win7下的安装及创建项目hello word的例子


有关python 的django 框架安装与开发的小例子。
Django在Win7下的安装及创建项目hello word。
1、安装:
命令如下:
pip install Django==1.6.5

2、创建项目
django-admin.py startproject web

修改 urls.py
url(r‘^blog/index/$‘,‘blog.views.index‘),

3、创建工程:
django-admin.py startapp blog

修改:/blog/views.py
添加:(脚本学堂 www.jbxue.com)
from django.http import HttpResponse
def index(req):
return HttpResponse("hello world");

4、启动自带的服务器
python manage.py runserver

访问页面:
http://127.0.0.1:8000/blog/index/

Django在Win7下安装与创建项目hello word示例,布布扣,bubuko.com

Django在Win7下安装与创建项目hello word示例

标签:style   blog   http   art   line   re   

原文地址:http://www.cnblogs.com/cfinder010/p/3843897.html

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