Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to manually install software/plugin to Eclipse IDE?

Tags:

eclipse

I have downloaded a RAR file from the following location, to be (manually) installed to Eclipse (Helios). How can I perform the manual installation?

http://sourceforge.net/projects/eclipsesql/files/SQL%20Explorer%20RCP%20%28exc%20JRE%29/3.6.1/sqlexplorer_rcp-3.6.1.macosx.cocoa.x86.tgz/download

like image 225
siva636 Avatar asked Jul 20 '11 05:07

siva636


People also ask

Where is the option for installing a plugin in Eclipse?

2.1. In Eclipse, go to Help > Install New Software. This displays the Available Software screen, as shown in Figure 2-1. Press the Add button.


1 Answers

Instead of putting it directly into the plugins directory, it's better to use the dropins directory as this was created just for this purpose. Have a look here: http://wiki.eclipse.org/Equinox_p2_Getting_Started#Dropins

For sqlexplorer: do not download the full RCP version (as your link does), this one is standalone. Get this one instead: http://sourceforge.net/projects/eclipsesql/files/SQL%20Explorer%20Plugin/3.6.1/sqlexplorer_plugin-3.6.1_SR2.zip/download

Extract this to $eclipse_home$\dropins\sqlexplorer and restart Eclipse.

BUT: Using the SqlExplorer Update Site (http://eclipsesql.sourceforge.net/) would be an even better option (Help>Install new Software)

like image 63
Daniel Avatar answered Oct 02 '22 09:10

Daniel