Django-1-安装与 helloword 项目

Django是一个高级Python Web框架,鼓励快速开发和简洁实用的设计。官网:https://www.djangoproject.com/

它由经验丰富的开发人员构建,可以解决大部分Web开发的麻烦,因此您可以专注于编写应用程序而无需重新发明轮子。它是免费和开源的。

一、安装 django

1.pip install django 或 pycharm 里面安装

检查是否出现如下图:django-admin

Django-1-安装与 helloword 项目

 2.创建django项目

  1. django-admin startproject hello_django  (hello_django是创建的项目目录名称)
  2. pycharm 创建 django 项目

Django-1-安装与 helloword 项目

 二、运行 helloword 项目

1.urls 中导入此库处理http请求:from django.shortcuts import HttpResponse

自定义一个函数,返回一个字符串:hello word!

from django.shortcuts import HttpResponse

def hello(request):
    return HttpResponse(‘hello word !‘)

Django-1-安装与 helloword 项目

 2.启动django项目,默认8000端口可修改

  1. 命令行启动:python manage.py runserve
  2. pycharm 里面启动,如下图(别右键运行)
C:\Users\Administrator\Desktop\hello_django>python manage.py runserver
Performing system checks...

System check identified no issues (0 silenced).

You have 13 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.
Run ‘python manage.py migrate‘ to apply them.
May 10, 2020 - 12:02:35
Django version 1.11, using settings ‘hello_django.settings‘
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.

Django-1-安装与 helloword 项目

 3.浏览器中输入:http://127.0.0.1:8000/hello/

因为这里需根据urls配置的路径返回对应的函数结果。

Django-1-安装与 helloword 项目

 这样 django web 项目就运行起来了。但是坑还挺深这只是简简单单的一个 hello word !加油呀。

欢迎来大家QQ交流群一起学习:482713805

相关推荐