Ubuntu Linux

How to Install Eclipse IDE on Ubuntu 24.04

Richard
Written by
Richard
Feb 4, 2025 Updated Mar 20, 2026 4 min read
How to Install Eclipse IDE on Ubuntu 24.04

This article explains how to install Eclipse IDE on Ubuntu 24.04.

Eclipse IDE is an open-source integrated development environment (IDE) primarily used for Java development but is extensible enough to support other programming languages via plugins. It offers coding, debugging, testing, and streamlining software development.

Eclipse runs seamlessly on Ubuntu (Linux), Windows, and macOS. Using Eclipse IDE on Ubuntu can be great for developers seeking a flexible, powerful, open-source environment tailored for Java and extensible to other languages and Linux-centric workflows.

The steps below walk you through installing Eclipse on Ubuntu.

Download and install Eclipse

The best method to install Eclipse is to download its installer from the download page. To do that, first, open your Ubuntu web browser and go to the Eclipse website.

Locate and download the Eclipse Installer designed explicitly for Linux systems with x86_64 architecture.

Eclipse download link

Next, click the Download button to begin the download.

Alternatively, you can copy the download link and use the wget command to download it from the command line.

💻Code
wget https://eclipse.mirror.rafal.ca/oomph/epp/2024-12/R/eclipse-inst-jre-linux64.tar.gz

Once downloaded, extract the downloaded file using the command below.

💻Code
tar -xzf eclipse-inst-jre-linux64.tar.gz

Then, change it to the extracted folder and run the installer.

Command Prompt
cd eclipse-installer
./eclipse-inst

After running the installer, the installation wizard will appear. For this tutorial, select the Eclipse IDE tailored for Java development.

Eclipse install for Java

Select your desired Java version, then initiate the Eclipse installation process by clicking the INSTALL button.

Eclipse install for Java location

Once installed, click the LAUNCH button. Keep the create start menu entry and desktop shortcut checked.

Eclipse launch

After that, Eclipse will be ready to use.

Eclipse ready to use

The next time, you can run Eclipse IDE through the Launcher by clicking its desktop app icon.

Install Eclipse using Snap

Another way to install Eclipse is to use the Snap package manager.

To do that, install the Snap package manager if it’s not already installed.

🐧Bash / Shell
sudo apt install snapd

Then, run the command below to install Eclipse from the Snap package manager. Snap Store will install the Eclipse IDE by default for Java developers.

🐧Bash / Shell
sudo snap install eclipse --classic

Once installed, use the Dock on the left sidebar to search and launch the Eclipse app.

You can also run the app using the command below.

💻Code
snap run eclipse

Remove the app using the command below.

🐧Bash / Shell
sudo snap remove eclipse

Install Eclipse using the App Center

Yet another way to install Eclipse on Ubuntu is by using the App Center app. Click on the App Center app to open it.

Ubuntu Software Center interface for managing applications on Ubuntu 24.04

When the app opens, use the search box to search for Eclipse and install it.

Eclipse search in app center

Install the app

Eclipse install from app store

Once installed, use the Dock on the left sidebar to search and launch the Eclipse.

That should do it!

Conclusion:

Installing Eclipse IDE on Ubuntu 24.04 is straightforward and offers multiple methods tailored to different preferences. Here are the key takeaways:

  • Versatility: Eclipse IDE is a powerful tool for Java development and supports multiple programming languages through plugins.
  • Multiple Installation Methods: Options to install Eclipse include downloading directly from the Eclipse website, using the Snap package manager, or through the App Center.
  • Ease of Use: Each method provides a user-friendly experience, ensuring developers can quickly start.
  • Cross-Platform Compatibility: Eclipse runs on various operating systems, making it an excellent choice for developers in different environments.
  • Community Support: As an open-source IDE, Eclipse benefits from a large community that contributes to its development and provides support.

With Eclipse installed, you can efficiently develop, debug, and manage your Java projects in a flexible environment. Enjoy your development experience!

Frequently Asked Questions

How do I install Eclipse IDE on Ubuntu 24.04?

To install Eclipse IDE on Ubuntu 24.04, you can download the Eclipse Installer from the official Eclipse website or use the Snap package manager. Follow the installation steps provided in the tutorial to complete the setup.

Can I install Eclipse IDE using Snap on Ubuntu?

Yes, you can install Eclipse IDE using the Snap package manager on Ubuntu. Simply run the command 'sudo snap install eclipse --classic' after ensuring that Snap is installed on your system.

What are the system requirements for Eclipse IDE on Ubuntu?

Eclipse IDE requires a Linux system with x86_64 architecture and a compatible Java Development Kit (JDK) installed. Ensure your system meets these requirements for optimal performance.

Is Eclipse IDE free to use on Ubuntu?

Yes, Eclipse IDE is an open-source software and is free to use on Ubuntu and other operating systems. You can download it without any cost from the official Eclipse website.

How can I remove Eclipse IDE from my Ubuntu system?

To remove Eclipse IDE from your Ubuntu system, you can use the command 'sudo snap remove eclipse' if you installed it via Snap. Alternatively, if you used the installer, you can delete the Eclipse folder manually.

Was this guide helpful?

Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, the owner and lead writer at Geek Rewind, is a tech enthusiast passionate about simplifying complex IT topics. His years of hands-on experience in system administration and enterprise IT operations have honed his ability to provide practical insights and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2456 articles → Twitter

📚 Related Tutorials

How to Install OTRS Ticketing Systems on Ubuntu Linux
Ubuntu Linux How to Install OTRS Ticketing Systems on Ubuntu Linux
How to Install Ruby on Ubuntu Linux
Ubuntu Linux How to Install Ruby on Ubuntu Linux
Installing OpenSSH on Ubuntu 24.04
Ubuntu Linux Installing OpenSSH on Ubuntu 24.04
How to Install Postfix on Ubuntu 24.04
Ubuntu Linux How to Install Postfix on Ubuntu 24.04

Leave a Reply

Your email address will not be published. Required fields are marked *