How to install eclipse color theme plugin without eclipse itself - eclipse

I use eclipse at work. Our internet is limited so I can't download plugins through eclipse itself. Anybody know a way I can download it at home, then install it from a flash drive or something of that nature? All I can find is info on the github and I have no idea how to use that. Still a noob
Thanks in advance

This should work.
Download the github zip file from here
The dropins directory should be used to install a plugin manually. The typical process is that you download a plugin and extract that archive to the dropins directory.
The plugins directory on the other hand is reserved for Eclipse's updater. You should not mess with it manually. Eclipse will store all plugins you install using "Help"->"Software Updates" or "Help"->"Install new software" (depending on your Eclipse version).
Please, let me know if this works for you.
See the stackoverflow question:

Related

Install hadoop plugin for eclipse oxygen

I am trying to install hadoop plugin for eclipse oxygen ... but am not able to make it work properly.. i am not getting any option to create a map reduce project .. can some one please let me know how to go abt installing the hadoop eclipse plugin ? I am unable to use the install new software feature - I have downloaded the hadoop-eclipse-plugin-2.6.0.jar but am not able to install the same as that is giving me an error sayin no site exists that this location. Also, copying the plugin at the eclipse/plugin folder doesn't work either ?
Please help!
Copy it to the dropins folder of your Eclipse installation directory.
See also: Eclipse help - The dropins folder and supported file layouts

Custom Eclipse packages

I would like to make an offline Eclipse installation with JDT, CDT and a few other plugins. This is what I would like to do, in decreasing preference:
Create an installation package similar to the ones available for download on the Eclipse website. Question: How can this be done? How are they created? Is there some kind of automated tool that gets the packages from p2 repositories and builds them? Is there a detailed explanation somewhere of how they are created? (I am aware of Yoxos, but that is a few versions old)
Do the installation on an internet-connected computer, and then copy the folder to another computer. Question: Can this be done? Will a simple Copy/Paste work correctly? Is there anything I can delete from the installation that will be automatically recreated?
Use an Eclipse package, say JDT, and a downloaded copy (zip file?) of the CDT and other plugins, and install them on the target machine using the standard Eclipse plugin installation from a local archive method. Question Where can I get these downloads?
The simplest approach you could use is to start from the eclipse "classic" package downloaded directly from the site, and then manually install the other components you need via update manager. You can then zip the eclipse directory and distribute it without any problem.
Otherwise you could try to use Yoxos to create your package, download and distribute it

Eclipse Plugin Installation

I want to install my pugine in eclipse without opening the eclipse. i have copied my plugin in plugin folder but by using this way i am not able to Uninstall plugin from eclise. When i am trying to uninstall plugin from "Eclipse Installation Detail" the Uninstall button is disable. i dont understand what is the proper way to install plugin without opening the eclipse. if is there any proper way then let me know.
Thanks
In latest versions of Eclipse (since Eclipse 3.4), a new provisioning mechanism appeared. You should never make any modification yourself in the Eclipse filesystem. You have to use p2 for manipulating your Eclipse installation.
Refer to the following links, for a first step in this install mechanism: http://wiki.eclipse.org/Equinox_p2_Getting_Started
To manipulate things without launching the Eclipse itself:
http://wiki.eclipse.org/Equinox_p2_director_application
If you manualy copy the plug-in in your Eclipse folder, then you are responsible for removing it. Since you didn't go through the Eclipse install mechanism, Eclipse is lacking the metadata needed to uninstall it. It basically says: "I see it is there, but I don't know how it got there, so better not remove it."
check this out:
http://www.venukb.com/2006/08/20/install-eclipse-plugins-the-easy-way/

Download GWT plugins for eclipse without using eclipse Instaqll new softeware

Is this possible to download GWT plugins for eclipse separately ( without downloading with eclipse directly ) ?
because i need to install it on multiple eclipse on multiple pc and I want to archive it for future needs.
I want to paste it in dropins folder in eclipse later.
Regards
Here you go:
http://code.google.com/eclipse/docs/install-from-zip.html
Prepare one eclipse installation the way you like using the standard update sites.
Then you can archive this installation by just copying the eclipse folder and zipping it away somewhere.
To install a new eclipse just take the archive and unzip it on the target system.
With this you have the advantage of still having the automatic updates for the different installations.

How to install a custom plug-in in Eclipse Ganymede?

We have a custom plug-in. That is, the company where I'm working developed it in house.
I would like to install it as an available plug-in in Eclipse Ganymede. How do I do that?
From what I can figure out, the Eclipse software install only supports installation from Eclipse software update sites.
I went to Help -> Install New Software... -> Add -> Local...
to browse to a folder containing the plug-in. Although the dialog lets me add the directory as an update site, it doesn't work. It expects that directory to be a local Eclipse update site (I think). I get the error
No repository found at file:/G:/TOOLS/...
Next I just copied the plug-in into the plug-in directory under my Eclipse installation. That didn't work either. I also tried copying it into the dropins directory. No dice.
Can anyone enlighten me how to install a plug-in that's not on an "update" site?
Thanks in advance....
Usually an Eclipse plug-in packaged as zip file is install by extracting it into the Eclipse installation directory (or the plugins directory depending on how it is packaged, as it can also extract files in features directory).
Next restart Eclipse with the --clean option.
Did you check the Eclipse error log? Maybe the bundle is failing to deploy for some reason.
Otherwise, create a Feature and Update Site for your plugin as described here. An update site can either be a remote http server (SVN even), or a local directory. The nice thing is that you'll get versioning and the ability to upgrade and uninstall from inside Eclipse. It also makes things easier once your plugin grows into several plugins because they can be bundled together into a single, versioned feature.