conversations on all interesting things related to technology and innovation ...

in collaboration with

Pydev installation on eclipse : a tutorial

Share |

I use the Pydev plugin to develop Python programs on Eclipse. It’s a free plugin. Here I am listing down the step by step process to install and start working with Pydev.

1)      Download the Pydev plugin here

2)      Install the Pydev by just following the instructions

3)      Once the Pydev is installed open eclipse

4)      Goto Window -> Preferences -> Pydev -> Interpreter Python

5)      Click on the New Button

6)      Select the path where the “python.exe” is present and click on OK

7)      If the path is successfully found the screen should look like this

8)      Click on OK. Now goto Window -> Open Perspective

9)      Select the Pydev perspective , which means the plugin is successfully configured and you are ready to write the first program.

10)   Goto File -> New -> PyDevProject

11)   After Click on Finish , the project appear is “PyDev Package Explorer”.

12)   Right Click on src -> New -> PyDev Module

13)   Enter the name of program and click on Finish.

14)   The screen should appear as follows:

15)   Instead of “pass” write

print ‘Hello World’

16)   Run the program with the play button as a normal java program runs.

17)   Check the console screen to see “Hello World”

And now you are all set to go and write python programs in Eclipse



4 Comments, Comment or Ping

  1. This is great, I will link to it for those looking to installation help on the Python Tutor mailing list.

    Nice post.

  2. This is great, I will link to it for those looking to installation help on the Python Tutor mailing list.

    Nice post.

  3. Amy

    This is great, I will link to it for those looking to installation help on the Python Tutor mailing list.

    Nice post.

Reply to “Pydev installation on eclipse : a tutorial”