How to Install Eclipse for C++ on Linux? Last Updated : 16 Oct, 2021 Comments Improve Suggest changes Like Article Like Report Eclipse is an IDE (integrated development environment) used for building software. It was initially released by IBM on 7 November 2001. Using eclipse, we can develop applications with Java, PHP, and C/C++ programming languages. It's one of the most popular open-source IDE among developers. In today's article, we are going to cover how we can install Eclipse for C/C++ Developers to develop applications in C or C++ on a Linux machine. Installing Eclipse for C++ on Linux: Follow the below step-by-step guide to install Eclipse for C/C++: Step 1: Download the eclipse launcher by going through this link: downloading the eclipse Step 2: Extract the downloaded file using the following command: tar -xvf eclipse-cpp-2021-09-R-linux-gtk-x86_54.tar.gz The tar is a utility tool to make operations on archives, to extract, to make, to list, and to rename the archives. Here, -xvf flag stands for extract, verbose, and file. Extracting Step 3: Navigate to the extracted folder and run the following commands to install Alacarte menu that will help us to create a desktop shortcut for Eclipse. After extracting the eclipse installer, create a shortcut for the launcher: Alacarte is a menu editor for the GNOME desktop. It is written in Python. It has been part of GNOME since the 2.16 release. To install the Alacarte for creating a custom shortcut icon. sudo apt-get install alacarteinstalling alacarte Step 4: Configuring the shortcut by running the alacarte: alacarteCreating shortcut In the first step click on the New item button on the right side, a pop-up window will open as in the above figure. Select executable from the extracted folder and click on the ok button. This will create a shortcut application in the programs. Step 5: To launch the eclipse simple search for Eclipse, a icon will appear and click enter. This will launch the Eclipse IDE. Eclipse installed Comment More infoAdvertise with us Next Article How to Install Eclipse for C++ on Linux? R rriicchhaa Follow Improve Article Tags : How To Installation Guide how-to-install Similar Reads How to Install Eclipse For PHP on Linux? Eclipse is a free open source platform, Integrated Development Environment (IDE) with the help of which applications are made using the Java programming languages and other programming languages are also used such as C/C++, PERL, Python, Ruby, etc. It is composed of many plug-ins and is designed to 1 min read How to Install Code Blocks for C++ on Linux? Code::Blocks is a free IDE( an integrated development environment), for C/C++ and FORTRAN languages. It is a cross-platform IDE and available for Windows, Mac, and Linux, In this article, we are going to discuss various methods using which we can install Code Blocks on Linux.: Installation Code Bloc 2 min read How to Install Eclipse for C++ in MacOS? C++ is basically a programming language. It is an Object-Oriented Programming Language. That means here we can use classes, objects, and other useful items. For developing purposes C++ is widely used. For this reason, we need to have an IDE. Eclipse is an IDE. It is used for many programming languag 2 min read How to Install Eclipse for PHP on MacOS? Eclipse is a free open source platform, Integrated Development Environment (IDE) with the help of which applications are made using the Java programming languages and other programming languages are also used such as C/C++, PERL, Python, Ruby, etc. It is composed of many plug-ins and is designed to 1 min read How To Install Qt Creator On Linux? Qt Creator is a cross-platform C++, JavaScript, and QML integrated environment that simplifies GUI application development. It is currently available for Windows, macOS, and Linux. It is part of the SDK for the Qt GUI application development framework and uses the Qt API, which encapsulates host OS 2 min read How to Install GCC Compiler on Linux? In this article, we will discuss how to install a GCC compiler on Linux. GCC stands for GNU Compiler Collections which is used to compile mainly C and C++ language. It can also be used to compile Objective C and Objective C++. The GCC is an open-source collection of compilers and libraries. Let's st 2 min read How to Install Scala IDE For Eclipse? In this tutorial, we'll look at how to set up the Eclipse IDE for Scala. This tutorial is for those who are new to Scala. Requirement for InstallationEclipse (Install link) if you don't know how to install Eclipse then refer to this article.JDK 11 (you may use JDK 6 onwards) Note: If you do not have 2 min read How To Install "git-gui" on Linux? Git is a FOSS (Free and Open Source Software) that is used for version control of any set of files, typically, the source code of software projects. Git is a version control system for recording changes in any group of files. During software development, it's generally used to coordinate work among 2 min read How to Install Eclipse IDE For Java? There are many software been there such as IntelliJ IDEA, Eclipse, etc of which most developers are tilted towards using Eclipse is open-source software. It is mainly used for JAVA applications development. We can also use it to develop applications in various programming languages like C, C++, C#, 2 min read How To Install Eclipse for PHP on Windows? Eclipse is a free open source platform, Integrated Development Environment (IDE) with the help of which applications are made using the Java programming languages and other programming languages are also used such as C/C++, PERL, Python, Ruby, etc. It is composed of many plug-ins and is designed to 1 min read Like