Alec Teal
Alec Teal

Reputation: 5938

Eclipse - Installed PyDev and nothing changed

This isn't my first time using Eclipse or installing PyDev but this is the first time it both succeeded and failed.

It succeeded because it installed, it shows up as being installed and installation went on fine without a problem.

It failed because nothing has shown up, there is no Python perspective, no PyDev views in the view list, no new projects under PyDev, no PyDev preferences. It is as if it is not actually installed at all.

The only thing I did differently is extract the latest eclipse to a folder called ~/eclipse and create a short cut to run it there (the latest Eclipse), usually I use apt-get to install eclipse, realise it's an old version (C++11 stuff missing) then upgrade and do this. Somehow PyDev is usually carried forward.

I'm not sure how it can list it as being installed but have this error, I'd appreciate any help you guys can offer.

Upvotes: 0

Views: 784

Answers (2)

Fabio Zadrozny
Fabio Zadrozny

Reputation: 25372

The problem is really that sometimes even installing java 7, Eclipse does not get it.

In http://pydev.org/download.html, there's a section called: PyDev does not appear after install!

Try to follow it to see if it fixes your problem (i.e.: making Eclipse find java 7).

Another option would be using PyDev standalone (i.e.: LiClipse). Although it's commercial, it should come with all the requisites builtin (so, no hassles to install) and is updated whenever PyDev itself is updated.

Upvotes: 0

LiMar
LiMar

Reputation: 2972

I bet it's the problem of 3.x version of PyDev. It demands java 7.

2 solutions are possible:

  • Install java 7. re-run the Eclipse, Pydev should function well now. OR
  • Install last 2.x version of PyDev.

    To do it

    1) Remove PyDev : In Eclipse About window click Installation Details button below. You will see controls for removing plug-ins.

    2) Install 2.x version of PyDev:

    • Eclipse Help->Install New Software.
    • REMOVE CHECKBOX "Show only the latest version" located at the bottom of the dialog.
    • Choose Pydev update site from the list and in the appeared list of PyDev versions choose latest in 2.x branch.

Upvotes: 1

Related Questions