windows7下配置python django开发环境

  • 配置环境: windows7 x64 , python 2.7.9

  • 下载:django 1.7.7  

下载地址: http://www.oschina.net/news/60675/django-security-released

 之后解压到自己保存软件的目录(比如:  D:\soft)

  • 安装 django 1.7.7  : (在cmd下)

     cd  d:\soft\Django-1.7.7

         python setup.py install

  • 创建一个项目

django-admin startproject test01

  • 运行项目

    cd test01

    python manage.py runserver

    如果成功配置,会出现如下字样:


  • Performing system checks...
    
    System check identified no issues (0 silenced).
    
    You have unapplied migrations; your app may not work properly until they are applied.
    Run 'python manage.py migrate' to apply them.
    April 07, 2015 - 16:59:14
    Django version 1.7.7, using settings 'd11.settings'
    Starting development server at http://127.0.0.1:8000/
    Quit the server with CTRL-BREAK.
  • 访问 浏览器访问: 

    http://127.0.0.1:8000/

    windows7下配置python django开发环境_第1张图片




你可能感兴趣的:(python,django,django开发环境)