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

2020-12-13 04:40

阅读:341

标签: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示例,搜素材,soscw.com

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

标签:style   blog   http   art   line   re   

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


评论


亲,登录后才可以留言!