Follow
Ubuntu Linux

How to Install Eclipse IDE on Ubuntu 24.04

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

You install Eclipse IDE on Ubuntu 24.04 via the Snap Store or a manual download process.

Eclipse IDE is a popular, free, and open-source integrated development environment used for writing and debugging code, especially well-known for its Java capabilities.

It offers a comprehensive set of tools to simplify your entire software development workflow on your PC.

For Ubuntu 24.04, installing the recent Eclipse 2024-03 (version 4.31) gives you access to the newest features and performance improvements.

⚡ Quick Answer

Install Eclipse IDE by downloading the installer from the Eclipse website and running it, or use the command line with `sudo snap install eclipse –classic`. Both methods will guide you through the setup process for launching the IDE.

Download and install Eclipse

Let’s start with the manual download method. You can get the installer directly from the Eclipse website. To do that, first, open your Ubuntu web browser and go to the Eclipse website.

Look for the Eclipse Installer built for Linux systems with an x86_64 architecture.

Eclipse download link
Eclipse download link

Click the ‘Download’ button to start.

You can also 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

After downloading, extract the file using the command below.

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

Then, navigate to the extracted folder and run the installer.

Command Prompt
cd eclipse-installer
./eclipse-inst

Once the installer runs, you’ll see the installation wizard. For this tutorial, select the Eclipse IDE tailored for Java development.

Eclipse install for Java
Eclipse install for Java

Choose your desired Java version, then start the Eclipse installation by clicking the INSTALL button.

Eclipse install for Java location
Eclipse install for Java location

When it’s done, click the LAUNCH button. Make sure ‘create start menu entry’ and ‘desktop shortcut’ are checked.

Eclipse launch
Eclipse launch

Eclipse will now be ready to use.

Eclipse ready to use
Eclipse ready to use

Next time, you can launch Eclipse IDE from your desktop by clicking its icon.

Install Eclipse using Snap

If you prefer, you can also install Eclipse using the Snap package manager.

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

🐧Bash / Shell
sudo apt install snapd

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

🐧Bash / Shell
sudo snap install eclipse --classic

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

You can also run the app using the command below.

💻Code
snap run eclipse

To remove the app, use 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. Click on the App Center app to open it.

Ubuntu Software Center interface for managing applications on Ubuntu 24.04
Ubuntu Software Center interface for managing applications on Ubuntu 24.04

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

Eclipse search in app center
Eclipse search in app center

Install the app

Eclipse install from app store
Eclipse install from app store

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

That should do it!

Conclusion:

Installing Eclipse IDE on Ubuntu 24.04 offers several methods to suit your 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!

How to install Eclipse enterprise edition in Ubuntu?

And then you’ll see the Eclipse Installation file right there. Make sure that file is executable. If you have executable rights, then double-click on it.

How to download IDE in Ubuntu?

This Eclipse IDE on my Ubuntu operating system. So you can see it’s around an 83 megabyte file, so I will wait for the download to complete.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips 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.

📚 Related Tutorials

How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

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