step1:install python, download from http://www.python.org/getit/, choose windows version.
start->program->python2.7->IDLE(Python GUI), you can see:
step2:install pydev plugin,
eclipse: help->install new sofeware->add, then input pydev url and Name(random), if you install successfully, you can from eclipse help->About Eclipse SDK->Installation Detail, then will see pydev plugin.
step3: configure
eclipse : Windows->Preferences->PyDev->Interpreter python
step5:new project,package,module
eclipse: File->New->New Project
(2)File-New-Pydev Module,然后Name随便写为Pydev,其它项默认,然后finish
(3)然后在出来的Pydev.py中写一句最简单的代码,在注释下面写一行print 1
(4)点击Run as...,选择Python Run,运行后将会在Console里面显示出结果:1 证明成功,呵呵。