slaveCoder
slaveCoder

Reputation: 537

Setting up Java Eclipse IDE for Raspberry-pi

I have installed java and eclipse in my raspberry-pi.

enter image description here

Installed eclipse using

sudo apt-get install eclipse

Eclipse is installed and i am able to open the IDE through VNC.But there is no run configurations set in eclipse.It is asking for new run configurations.

enter image description here

Even in the run configuration there is no JRE option.

enter image description here

I also want to add external jar files.Searched the web but didn't get much for eclipse configuration on raspberry-pi

Upvotes: 0

Views: 4641

Answers (1)

greg-449
greg-449

Reputation: 111142

Looks like you have the absolute minimum version of Eclipse installed which does not have the Java Development Tools installed.

You should be able to install this in Help > Install New Software, work with the main Eclipse site and install Eclipse Java Development Tools (under Programming Languages).

Upvotes: 1

Related Questions