7

Eclipse に PDT プラグインをインストールしようとすると、エラーが発生します。

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]
4

3 に答える 3

3

このメッセージはひどいもので、4.0.0 <= バージョン <5.0.0 の org.eclipse.dltk.debug.ui が Eclipse インストールで使用できないか、インストール ダイアログで利用可能な Eclipse 更新サイトから利用できないことを意味します。

Eclipse インストール・ダイアログにEclipse Dynamic Language Toolkit 更新サイトを追加してから、PDT のインストールを再試行してください。

于 2013-09-18T22:47:30.497 に答える
0

Ubuntu 14.04 では、@Manfred によって提示されたソリューションはインストールの問題を解決しませんでした。

次に、PHPeclipseで提示されたソリューションに従いました

PHP サポートの有効化

標準として、Eclipse は PHP をサポートしていません。これを追加し、ルートとして追加する必要があります。

Launch Eclipse as root from the command line:

    $ sudo eclipse (gksudo causes an unusual warning). 

When the "Welcome to Eclipse" screen is displayed, select Help->Install New Software...

The "Galileo" site must be added, click "Add..." and input:

    Name: Galileo Location: http://download.eclipse.org/releases/galileo/ 

Once this is available, select "Galileo" in the Work with: drop-down list.

Enter "php" into the filter text, two entries should be displayed for "PHP Developer Tools (PDT)"; one under Programming Languages,

もう 1 つは、Web、XML、および Java EE 開発の下にあります。両方を選択して「次へ >」をクリックします。

Verify that the items you wish to install are displayed on the "Install Details" screen and click "Finish".
Eclipse will need restarted for the update to complete. 

これが完了すると、通常のユーザー アカウントで Eclipse を起動し、[新規] -> [プロジェクト] -> [PHP] -> [PHP プロジェクト] を選択できるようになります。

于 2014-12-27T01:23:47.740 に答える