VOOZH about

URL: https://www.geeksforgeeks.org/installation-guide/how-to-install-eclipse-ide-on-arch-based-linux-distributionsmanjaro/

⇱ How to install Eclipse IDE on Arch-based Linux Distributions(Manjaro) ? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

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

👁 Image
 
👁 Image
 
👁 Image
 

Step 2: Extract the tar file by using the following command

$ tar -xzf eclipse-inst-jre-linux64.tar.gz 
👁 Image
 

Step 3: Start the installation process by clicking the executable file.

👁 Image
 
👁 Image
 

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.

👁 Image
 
👁 Image
 
👁 Image
 

Method 2: Using snap store

Step 1: Update and upgrade your system by running

$ sudo pacman -Syyu
👁 Image
 
👁 Image
 
👁 Image
 

Step 2: Install snap from the official Arch repositories

$ sudo pacman -S snapd
👁 Image
 
👁 Image
 

Step 3: Enable snap by using the systemctl command

$ sudo systemctl enable --now snapd.socket
👁 Image
 

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
👁 Image
 

Step 5: Verify the installation by running

$ snap version
👁 Image
 

Step 6:  Finally, install Eclipse using the snap with --classic flag.

$ sudo snap install eclipse --classic
👁 Image
 

Getting Started with Eclipse

  • You can now open Eclipse by searching for the application in the application menu
👁 Image
 
👁 Image
 
  • Accept the service agreement
👁 Image
 
  • Create a new Java project
👁 Image
 
👁 Image
 
👁 Image
 

Uninstallation of Eclipse

To uninstall Eclipse along with all of its dependencies run:

$ sudo snap remove eclipse
👁 Image
 
Comment