How to install Eclipse IDE on Arch-based Linux Distributions(Manjaro) ?
Last Updated :
27 Jun, 2022
Eclipse is an open-source and cross-platform integrated development environment(IDE) and is used for developing applications in Java, C/C++, PHP, Python, Ruby, etc. Since 2001, it has been maintained by the Eclipse foundation and primarily written in Java. It is the second most popular Java IDE on the market due to its features like auto code completion, syntax highlighting, linting, debugging, profiling, etc. It also supports code navigation, code completion, code refactoring, unit testing, integration testing, and a wide variety of plugins.
This article will discuss the two most common ways to install Eclipse on Arch/Manjaro/Chakra.
Installation of Eclipse
Method 1: Using the Eclipse installer
Step 1: Download the latest version of the Eclipse graphical installer by clicking here.
Step 2: Extract the tar file by using the following command
$ tar -xzf eclipse-inst-jre-linux64.tar.gz
Step 3: Start the installation process by clicking the executable file.
Step 4: Choose the required package for the language in which you want to develop your application. I will be using Java for this tutorial.
Method 2: Using snap store
Step 1: Update and upgrade your system by running
$ sudo pacman -Syyu
Step 2: Install snap from the official Arch repositories
$ sudo pacman -S snapd
Step 3: Enable snap by using the systemctl command
$ sudo systemctl enable --now snapd.socket
Step 4: Create a symbolic link between /var/lib/snapd/snap and /snap to enable classic support
$ sudo ln -s /var/lib/snapd/snap /snap
Step 5: Verify the installation by running
$ snap version
Step 6: Finally, install Eclipse using the snap with --classic flag.
$ sudo snap install eclipse --classic
Getting Started with Eclipse
- You can now open Eclipse by searching for the application in the application menu
- Accept the service agreement
- Create a new Java project
Uninstallation of Eclipse
To uninstall Eclipse along with all of its dependencies run:
$ sudo snap remove eclipse
Similar Reads
How to Install CLion IDE on Arch-based Linux Distributions (Manjaro) CLion (pronounced âSea Lionâ) is a cross-platform integrated development environment (IDE) developed by Jetbrains and is available as a free community edition for students and a commercial edition. It is used for developing C++ programs and is one of the most popular C++ IDE on the market. A number
2 min read
How to Install WebStorm IDE on Arch-based Linux Distributions (Manjaro) WebStorm is a cross-platform integrated development environment (IDE) developed by Jetbrains and is available as a free community edition for students and a commercial edition. The WebStorm coding environment supports JavaScript frameworks such as React, Vue, Angular, Express, Meteor, Cordova, and N
2 min read
How to install PyCharm IDE on Arch-based Linux Distributions(Manjaro) ? PyCharm is a cross-platform integrated development environment (IDE) developed by JetBrains, specifically for Python Programming Language. It is one of the most popular Python IDE on the market due to its features like syntax highlighting, auto code completion, profiling inspection, and debugging. I
2 min read
How to install Intellij Idea on Arch-based Linux Distributions(Manjaro) ? IntelliJ is a cross-platform integrated development environment(IDE) developed by Jetbrains and is available as an Apache 2 Licensed community edition and a commercial edition. It is primarily used for developing computer software written in Java, Kotlin, Groovy, and other JAR-based languages. It is
2 min read
How to install Postman on Arch-based Linux Distributions(Manjaro)? Postman is an HTTP client used to build, test, and modify APIs. It provides a graphical user interface through which developers can generate various types of HTTP requests like GET, POST, PUT, PATCH, and DELETE. It is used by more than 20 million developers across the globe to develop RESTful APIs.
1 min read