Thread: [Pydev-code] Trouble installing PyDev in Eclipse
Brought to you by:
fabioz
From: Dick M. <rdm...@gm...> - 2008-04-29 16:39:26
|
Win XP Pro, Python 2.5.1 I've got Java and Eclipse. "Eclipse SDK Version: 3.3.2 Build id: M20080221-1800" Now, <http://www.fabioz.com/pydev/manual_101_install.html> says, "To install Pydev and Pydev Extensions from the Eclipse Update Manager, you need to go to the install menu". But where is the Eclipse Update Manager? Thanks, Dick Moores -- UliPad <<The Python Editor>>: http://code.google.com/p/ulipad/ Version 3.9 was released April 25! |
From: Fabio Z. <fa...@gm...> - 2008-04-29 17:01:06
|
It's in the toolbar menu: help > software updates > find and install. Cheers, Fabio On Tue, Apr 29, 2008 at 1:39 PM, Dick Moores <rdm...@gm...> wrote: > Win XP Pro, Python 2.5.1 > > I've got Java and Eclipse. "Eclipse SDK Version: 3.3.2 Build id: M20080221-1800" > > Now, <http://www.fabioz.com/pydev/manual_101_install.html> says, "To > install Pydev and Pydev Extensions from the Eclipse Update Manager, > you need to go to the install menu". > > But where is the Eclipse Update Manager? > > Thanks, > > Dick Moores > > -- > UliPad <<The Python Editor>>: http://code.google.com/p/ulipad/ > Version 3.9 was released April 25! > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > pydev-code mailing list > pyd...@li... > https://lists.sourceforge.net/lists/listinfo/pydev-code > |
From: Dick M. <rdm...@gm...> - 2008-04-29 17:52:05
|
On Tue, Apr 29, 2008 at 10:01 AM, Fabio Zadrozny <fa...@gm...> wrote: > It's in the toolbar menu: help > software updates > find and install. OK, got it. But I suggest changing "To install Pydev and Pydev Extensions from the Eclipse Update Manager, you need to go to the install menu:" to "To install Pydev and Pydev Extensions, you need to go to the Eclipse 'Find and Install...' menu:" There isn't anything called the "Eclipse Update Manager". So I THINK I've installed PyDev, but when I open the Eclipse workspace, where is it? <http://www.rcblue.com/Misc/Eclipse_workspace.jpg> How can I tell if PyDev in fact is installed in Eclipse? Dick -- UliPad <<The Python Editor>>: http://code.google.com/p/ulipad/ Version 3.9 was released April 25! |
From: Fabio Z. <fa...@gm...> - 2008-04-29 18:02:17
|
Hi Dick, > OK, got it. But I suggest changing > ... > There isn't anything called the "Eclipse Update Manager". That's how it's commonly referred in eclipse, but I agree that the phrasing may not help beginners (I'll rephrase it). > > > So I THINK I've installed PyDev, but when I open the Eclipse > workspace, where is it? > <http://www.rcblue.com/Misc/Eclipse_workspace.jpg> How can I tell if > PyDev in fact is installed in Eclipse? You should have the pydev perspective (and related menus in the perspective), etc... have you tried following the getting started manual: http://www.fabioz.com/pydev/manual_101_interpreter.html ? Cheers, Fabio |
From: Dick M. <rdm...@gm...> - 2008-04-29 19:13:05
|
On Tue, Apr 29, 2008 at 11:02 AM, Fabio Zadrozny <fa...@gm...> wrote: > Hi Dick, > >> OK, got it. But I suggest changing >> ... >> There isn't anything called the "Eclipse Update Manager". > > That's how it's commonly referred in eclipse, but I agree that the > phrasing may not help beginners (I'll rephrase it). > >> >> >> So I THINK I've installed PyDev, but when I open the Eclipse >> workspace, where is it? >> <http://www.rcblue.com/Misc/Eclipse_workspace.jpg> How can I tell if >> PyDev in fact is installed in Eclipse? > > You should have the pydev perspective (and related menus in the > perspective), etc... have you tried following the getting started > manual: http://www.fabioz.com/pydev/manual_101_interpreter.html ? This stresses the SYSTEM PYTHONPATH. I hope that's Python's sys.path? OK, I think I have the PyDev perspective open. I have a window open that says, "Pydev Package Explorer. Thanks, Dick -- UliPad <<The Python Editor>>: http://code.google.com/p/ulipad/ Version 3.9 was released April 25! |
From: Fabio Z. <fa...@gm...> - 2008-04-29 19:20:11
|
> > This stresses the SYSTEM PYTHONPATH. I hope that's Python's sys.path? Actually, pydev manages the pythonpath so that when your run a project, the actual sys.path is defined by the paths in your interpreter pythonpath (which is the system pythonpath) plus the paths from the project where the run is being requested (which is composed by the paths in that project + the paths from the projects that the project has a dependency on). > > OK, I think I have the PyDev perspective open. I have a window open > that says, "Pydev Package Explorer. > Yeap, should be working then. Cheers, Fabio |