How to Manually Install The Eclipse-Cdt Plugin from an Archive/Zip on Ubuntu

How do you manually install the eclipse-CDT plugin from an archive/zip on ubuntu?

On eclipse 3.5, instead of unzipping onto the eclipse folder, try "Help" -> "Install New Software..." then "Add" and instead of typing an update site, choose "Archive". Then follow the instructions.

Eclipse: How to install a plugin manually?

You can try this

click Help>Install New Software on the menu bar

Sample Image

Sample Image

Sample Image

Sample Image

Eclipse C++ plugin on ubuntu 13.04

  1. Uninstall everything
  2. Download Eclipse CDT x86 or Eclipse CDT x64
  3. Extract to /usr/lib/eclipse
  4. Link /usr/bin/eclipse to /usr/lib/eclipse/eclipse
  5. You should now be able to select the C++ perspective and create C++ projects

Alternatively:

  1. Uninstall everything
  2. Download Eclipse Standard x86 or Eclipse Standard x64
  3. Extract to /usr/lib/eclipse
  4. Link /usr/bin/eclipse to /usr/lib/eclipse/eclipse
  5. Open Eclipse
  6. Help > Install New Software
  7. Add the CDT Repository: http://download.eclipse.org/tools/cdt/releases/kepler
  8. Select CDT and install it

How to download CDT for Eclipse 3.8 on Ubuntu 14.04?

First solution: there is an official eclipse-cdt package in Ubuntu 14.04.

However, instead of doing that, I would recommend that you simply download the Eclipse tarball from the official website instead of using the Ubuntu package. There are at least two advantages:

  • Your downloaded version of Eclipse will nearly always be more up-to-date than the packaged version;
  • You can install multiple instances of Eclipse, with different sets of plugins (e.g. one for Java, and another for C++);

Install Sconsolidator Eclipse CDT plugin offliine?

Help > Install New Software... requires an update site. Get a local copy of the update site by running following command from the command line within the Eclipse (at least the Eclipse Platform Runtime Binary) installation directory (adjust -destination to your needs):

eclipsec -nosplash -application org.eclipse.equinox.p2.artifact.repository.mirrorApplication -source http://www.sconsolidator.com/update -destination file:C:/SConsUpdateSite/

and

eclipsec -nosplash -application org.eclipse.equinox.p2.metadata.repository.mirrorApplication -source http://www.sconsolidator.com/update -destination file:C:/SConsUpdateSite/

Alternatively you can download following 7 files into a directory with the two subdirectories features and plugins:

  • features/ch.hsr.ifs.sconsolidator.depviz.feature_1.0.0.201707140647.jar
  • features/ch.hsr.ifs.sconsolidator.feature_1.0.0.201707140647.jar
  • plugins/ch.hsr.ifs.sconsolidator.core_1.0.0.201707140647.jar
  • plugins/ch.hsr.ifs.sconsolidator.depviz_1.0.0.201707140647.jar
  • plugins/ch.hsr.ifs.sconsolidator.help_1.0.0.201707140647.jar
  • artifacts.jar
  • content.jar

CDT installation in Eclipse

To install plug-ins into Eclipse you should always prefer using the user interface through Help > Install new software menu.

Anyway if you really want to install plug-ins manually into your Eclipse installation, you have to place them into the dropins folder.
BUT this way you will have to resolve plug-in dependencies by yourself. If all dependencies are not satifsied, the concerned plug-ins will fail to start silently. This is why you should REALLY prefer to use the standard plug-in installation method to avoid any problem.

Install Eclipse JDT on top of CDT

All versions of Eclipse have a standard base, then a specific set of plugins, depending on the version. All you have to do is go to the Help > Install New Software menu, select the Eclipse update site (e.g. "Galileo - http://download.eclipse.org/releases/galileo"), and under the Programming Languages section, select Eclipse Java Development Tools.

If you don't see the Java Development Tools in the list, click on the "already installed" link on the install page--you may already have the Java tools installed.



Related Topics



Leave a reply



Submit