Transcript
Page 1: How to Configure Eclipse for Python

How to Configure Eclipse for Python

Rose-Hulman Institute of Technology -Computer Science & Software Engineering

Python3 must be installed before the complete instillation can be completed. If youdon't have Python installed you can install it using these directions

Install the PyDev plug-in for Eclipse

1.

Launch Eclipse. A screen like this should appear, where you can choose which workspace toopen. (If not, go to File → Switch Workspace → Other )

a.

Screenshots read 'Python 3.1', which is the old version. You will be installing Python3.2.

b.

Browse the csse120 folder which you created when installing Eclipse. Select "Use this as thedefault and do not ask again".

If you do, Eclipse will automatically use this workspace next time you open Eclipse. Ifyou want to change the workspace later you can always go to File → SwitchWorkspace... to be sent back to the Workspace Launcher window.

i.

c.

You should now see Eclipse's Welcome screen:d.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

1 of 13 5/16/2012 1:53 AM

Page 2: How to Configure Eclipse for Python

Click on the arrow on the right to go to the workbench.

This is where you'll do most of your work in Eclipse.

Go to Help → Install New Softwarea.

2.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

2 of 13 5/16/2012 1:53 AM

Page 3: How to Configure Eclipse for Python

Enter http://pydev.org/updates in the Work with: field.b.

After several seconds, two options should appear. Select the PyDev for Eclipse option. Donot select the "PyDev Mylyn Integration" flag.

c.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

3 of 13 5/16/2012 1:53 AM

Page 4: How to Configure Eclipse for Python

Click "Next" and "OK" to continue installing PyDev.d.

Select "I accept the terms of the license agreement", then click "Finish". The installer willbegin to download the plug-in.

e.

Note: When you see the Selection Needed dialog box, you must manually checkthe box before pressing okay. If you do not, it appears that the installation is continuing,but it is not. You must uninstall PyDev, then reinstall.

f.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

4 of 13 5/16/2012 1:53 AM

Page 5: How to Configure Eclipse for Python

A security warning may appear asking whether you trust the software being installed- click"ok", then ensure the correct items are selected and click yes. The instillation process willcontinue.

g.

When the installation is complete, you will be asked if you want to restart Eclipse. Select"Yes". You may see a Subclipse Usage dialog, just uncheck the box and continue.

h.

Python must be installed to configure PyDev.a.

Go to Window → Preferences. In the Preferences window, expand PyDev and selectInterpreter-Python.

b.

3.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

5 of 13 5/16/2012 1:53 AM

Page 6: How to Configure Eclipse for Python

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

6 of 13 5/16/2012 1:53 AM

Page 7: How to Configure Eclipse for Python

Click "New..." and type Python32 for the Interpreter name. For the Interpreter executable,browse to your copy of Python (C:\Program Files\Python32\python.exe), and pressOpen.

Click "OK" and the Selection Needed Window will appear.

c.

Select all but the PySrc and python32.zip and click OK as many times as necessary to exitthe preferences. The default selection should be fine.

d.

The Interpreter is now set up so that the code you write can be interpreted for the computerto run. You are now ready to start running code.

e.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

7 of 13 5/16/2012 1:53 AM

Page 8: How to Configure Eclipse for Python

Installing Eclipse Preferences for Python

Unzip this Preferences for csse120 file, placing its sole unzipped file (EclipsePreference-2011-06.epf) in any convenient location (your desktop, My Documents folder, etc).

a.

1.

Launch Eclipse.

If Eclipse offers to Select a Workspace, browse to C:\EclipseWorkspace\csse120.i.

If the csse 120 workspace does not appear automatically, choose File → SwitchWorkspace → Other, and click Next.

ii.

a.

Now you are ready to set the preferences for the workspace:

Choose File → Importi.

In the Import dialog box, select General → Preferences and click Next.ii.

When the Import Preferences dialog opens, select Browse and find theEclipsePreferences-2011-06.epf file that you unzipped and saved above.

iii.

Back in the Import Preferences dialog, check Import All, then select Finish.iv.

As before, if the Subclipse Usage dialog makes an appearance, uncheck the box andcontinue.

v.

Confirm that the installation did not leave behind unintended files by checking if thereis:

random .eclipse folder anywhere, possibly in the folder immediately above MyDocuments.

i.

Any extra users (for example, the installer), in C:\Usersii.

Extra Eclipse workspaces anywhere except for the folders insideC:\EclipseWorkspaces.

iii.

vi.

b.

2.

Writing Your First Python Program

Go to Window → Open Perspective → Other and choose PyDev, then click OK. If youlook at the upper right corner you will see that the perspective has changed from "Java" to"PyDev".

a.

1.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

8 of 13 5/16/2012 1:53 AM

Page 9: How to Configure Eclipse for Python

Perspectives are designed to have the most useful tools within reach for whatever task youare doing (for example writing Java code or writing Python code). If you look in the File→New menu you will see that there are different options with the different perspective.

PyDev Perspective Java

As you can see, perspectives greatly affect the look of the Eclipse program.

b.

Go to File → New → PyDev Project to start a wizard.a.

In the next window that appears, enter the name of your project and select "python" and3.0"; as the type. Make sure "create default 'src' folder and add it to the pythonpath?" isselected. Click Finish.

b.

2.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

9 of 13 5/16/2012 1:53 AM

Page 10: How to Configure Eclipse for Python

If you look at the upper left corner of the workspace (in the Package Explorer view), youshould now see your newly created project with a "src" folder inside.

c.

Select the project you just created and go to File → New → PyDev Module. This willlaunch a new PyDev Module Wizard where you should enter a name for your module andmake sure it is in the right location. Leave the Package field blank and select Finish.

a.

3.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

10 of 13 5/16/2012 1:53 AM

Page 11: How to Configure Eclipse for Python

Look in the Package Explorer view and you will see an icon of your new file inside the srcfolder, which Eclipse created when you made the new project before.

The file should be opened in the open space in the center of the workspace-the Editor view.(If not, right click on the greeting.py icon and select Open.) You will see a tab with the nameof your file.

b.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

11 of 13 5/16/2012 1:53 AM

Page 12: How to Configure Eclipse for Python

Here's a program to greet the world. Simply type print('Hello, World!') into the file. Youmay remove the default doc comment or leave it there; Python ignores it.

a.

Right click on the file and select Save (or press Ctrl+S) to save the file.b.

Finally, choose the greeting.py icon, and go to Run → Run As → Python Run to run yourprogram.

(A quicker alternative is to right-click on the greeting.py icon, and select Run As → PythonRun, or press Ctrl+F11.)

c.

Look at the bottom of your screen at the Console view and you will see the message youtold the computer to print.

Congratulations! You have written your first program with Python.

d.

4.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

12 of 13 5/16/2012 1:53 AM

Page 13: How to Configure Eclipse for Python

Configure PyDev for Productivity

Add line numbers by right-clicking in the margin at the left side of the code view and click onShow Line Numbers.

a.

1.

Go to Window → Preferences. Open PyDev and select Editors (actually click on 'Editors',don't just expand it). In the Appearance Color Options dropdown menu, select Comments.Then change it to a brighter color (perhaps fuchsia?).

a.

2.

Go to Window → Show View → Tasks.a.

Window → Preferences → PyDev → Task Tags, and add CONSIDER: to the end ofthe list.

b.

To get the task tags to show, run the program once, or select Project → Cleanc.

3.

How to Configure Eclipse for Python http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python...

13 of 13 5/16/2012 1:53 AM


Top Related