在windows上搭建django开发环境

参考自:https://docs.djangoproject.com/en/dev/howto/windows/

环境: windows 8.1 

Steps:

  1. 安装python

    在 http://python.org/download/上下载windows版本进行安装

    添加下面的路径到环境变量PATH:

    C:\Python34\;C:\Python34\Scripts;
  2. 安装开发IDE eclipse

    下载地址: http://www.eclipse.org/downloads/

  3. 安装eclipse插件pydev

    启动eclipse, Help->Install New Software->Add

    在弹出的对话框中, Name填PyDev, Location填http://pydev.org/updates/

    点击NEXT然后安装

  4. 在eclipse中配置pydev

    eclipse->Window->Preferences->PyDev->Interpreters->Python Interpreter

    New一个Python解释器,在弹出的对话框中,Interpreter Name填python2.7, Interpreter Executable填D:\Python27

  5. 安装Setuptools

    在windows 8下通过PowerShell运行下面命令安装:

    (Invoke-WebRequest https://bootstrap.pypa.io/ez_setup.py).Content | python -

    windows 7 及以下安装方式参考https://pypi.python.org/pypi/setuptools#windows-7-or-graphical-install

  6. 安装PIP

    在cmd下运行如下命令

     easy_install pip
  7. 安装Django

    pip install django
  8. 搭建完成,现在可以用eclipse新建django工程进行开发啦!

在windows上搭建django开发环境,布布扣,bubuko.com

在windows上搭建django开发环境

上一篇:WinSCP 5.5版本中文目录乱码问题的解决方案


下一篇:UVA - 12316 Sewing Buttons with Grandma (有重复元素的组合)