美文网首页
The Django Book 第二章 入门

The Django Book 第二章 入门

作者: Alex_Honnold | 来源:发表于2017-10-14 10:38 被阅读0次

    本书网站链接

    安装django
    1.本地安装下载链接

    tar -xvf Django-1.11.6.tar.gz
    cd Django-1.11.6
    python setup.py install
    

    2.pip安装:

    pip install django==1.11.6
    

    django支持的数据库类型
      PostgreSQL
      SQLite 3
      MySQL 驱动
      Oracle

    基础命令
    创建项目:

    django‐admin startproject mysite
    

    运行项目:

    python manage.py runserver
    python manage.py runserver 8080
    python manage.py runserver 0.0.0.0:8000

    相关文章

      网友评论

          本文标题:The Django Book 第二章 入门

          本文链接:https://www.haomeiwen.com/subject/wgjnyxtx.html