Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse PDT plugin installation

I'm trying to install PDT plugin in Eclipse and I get error:

Cannot complete the install because one or more required items could not be found.
  Software being installed: PHP Development Tools (PDT) 3.1.2.201212211235 (org.eclipse.php.feature.group 3.1.2.201212211235)
  Missing requirement: PDT Debug UI Plug-in 3.1.2.201212211235 (org.eclipse.php.debug.ui 3.1.2.201212211235) requires 'bundle org.eclipse.dltk.debug.ui [4.0.0,5.0.0)' but it could not be found
  Cannot satisfy dependency:
    From: PHP Development Tools (PDT) 3.1.2.201212211235 (org.eclipse.php.feature.group 3.1.2.201212211235)
    To: org.eclipse.php.debug.ui [3.1.2.201212211235]
like image 689
Jan Avatar asked Aug 06 '13 18:08

Jan


2 Answers

dgolovins answer worked for me.

First install Dynamic Language Toolkit: Help-->Install New Software --> Add --> Location: http://download.eclipse.org/technology/dltk/updates-dev/4.0-stable/

Then install PDT: Help-->Install New Software --> Add --> Location: http://download.eclipse.org/tools/pdt/updates/latest

like image 175
Manfred Avatar answered Oct 16 '22 11:10

Manfred


This message is awful and means that org.eclipse.dltk.debug.ui with 4.0.0 <= version <5.0.0 is not available in your eclipse installation or form available eclipse update sites in Install dialog.

Add Eclipse Dynamic Language Toolkit update site in eclipse Install dialog and then try to install PDT again.

like image 24
dgolovin Avatar answered Oct 16 '22 13:10

dgolovin