标签:
使用pip安装:
pip install django
启动服务器:默认端口为8000
0.0.0.0让其它电脑可连接到开发服务器,8000为端口号。如果不说明,那么端口号默认为8000。
在浏览器输入你服务器的ip及端口号,如果正常启动,输出结果如下:
from django.http import HttpResponse def hello(request): return HttpResponse("Hello World!!")
from django.conf.urls import patterns, include, url from view import hello urlpatterns = patterns(‘‘, # Examples: # url(r‘^$‘, ‘HelloWorld.views.home‘, name=‘home‘), # url(r‘^blog/‘, include(‘blog.urls‘)), # url(r‘^hello/$‘, hello),(或者) (‘^hello/$‘,hello), )
标签:
原文地址:http://www.cnblogs.com/coffy/p/5446022.html