How To Install Python Plugin For Eclipse
Posted By: Mr. NeedInstructions; Category: Computer, Internet & Information Technology; December 15, 2010
Author Harshit; Tags: Python Plugin, Python, install, Eclipse;
Here is a step by step instruction on how you can install Python Plugin for Eclipse using Pydev plugin.
1
The plugin which I use to develop Python programs on Eclipse is Pydev. It’s a free plugin and can be downloaded from here

http://pydev.org/download.html
2
Run and Install the Pydev.exe. Please follow the step by step instructions given when double clicking the Pydev.exe.
3
Once the Pydev is installed open eclipse
Click Image To Enlarge
4
Goto Window -> Preferences -> Pydev -> Interpreter Python
Click Image To Enlarge
5
Click on the New Button
6
Select the path where the “python.exe” is present and click on OK
Click Image To Enlarge
7
If the path is successfully found the screen should look like this
8
Select the path where the “python.exe” is present and click on OK
Click Image To Enlarge
9
If the path is successfully found the screen should look like this
Click Image To Enlarge
10
Click on OK. Now goto Window -> Open Perspective
11
Select the Pydev perspective , which means the plugin is successfully configured and you are ready to write the first program.
Click Image To Enlarge
12
Goto File -> New -> PyDevProject
Click Image To Enlarge
13
After Click on Finish , the project appear is “PyDev Package Explorer”.
Click Image To Enlarge
14
Right Click on src -> New -> PyDev Module
15
Enter the name of program and click on Finish.
Click Image To Enlarge
16
The screen should appear as follows
17
Instead of "pass" write

print 'Hello World'
18
Run the program with the play button as a normal java program runs.
19
Check the console screen to see "Hello World"
Only registered users can add comments