Adil
Adil

Reputation: 97

PyDev not appearing in Eclipse after install

I have Java version 7 and had installed PyDev version 3.9 from Eclipse Marketplace..but it's not showing up in New project or in Windows perspective in Eclipse..Can some one please tell me what i need to do ???

Upvotes: 3

Views: 7850

Answers (3)

eltimbalino
eltimbalino

Reputation: 1

I had the same problem when installing on Ubuntu 16.04 via the repository. This was because the version it installed was not compatible with the python plug-in from http://www.pydev.org/updates/

Instead of using the older version of both Eclipse and PyDev, I uninstalled Eclipse via the repository by first clicking the 'Install' button, then when it immediately switched to 'Uninstall' I clicked that.

I then went to: http://www.eclipse.org/ and downloaded the recommended gz file. I then unzipped it into my /opt directory. I deleted the file path info from the command below and dragged the file "eclipse-inst-linux64.tar.gz" into terminal so it had the full file path.

sudo tar -xf /path/to/file -C /opt

I then used Nautilus to navigate to my /opt/eclipse-installer folder and double-clicked on the file: eclipse-inst

This ran the installer. I accepted the home directory recommendation. I accepted the offer to open Eclipse.

In Eclipse I went Help --> Market Place and then took the option to install PyDev from there.

Now when I got to Window --> Preferences, the option PyDev exists.

Upvotes: 0

drumbumLOLcatz
drumbumLOLcatz

Reputation: 131

Had this same problem a few days ago. You might have downloaded the wrong version of PyDev for your python version (2.7.5 or something is my python version, but I downloaded PyDev for version 3.x.x)

1) Uninstall your current version PyDev

2) you have to install the correct version by using the "Install New Software", then uncheck the "Show only newest software" or whatever it is. Then select the version that matched your python version, and install :)

Upvotes: 0

Tim
Tim

Reputation: 43314

PyDev is not meant to be installed through Eclipse's Marketplace. Follow the instructions at http://pydev.org/manual_101_install.html. Specifically this part

Installing with the update site

Note: Instructions are targeted at Eclipse 3.5 onwards

To install PyDev and PyDev Extensions using the Eclipse Update Manager, you need to use the Help > Install New Software... menu (note that in older versions, this would be the 'Find and Install' menu).

So basically you have to install it using the "Install New Software" menu. It's explained in detail in pydev's own installation manual.

Upvotes: 2

Related Questions