Skip to content
Follow
Ubuntu Linux

How to Install Eclipse IDE on Ubuntu 24.04

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

Installing Eclipse IDE on Ubuntu 24.04 gives you a free coding workspace to write and test programs, especially in Java. The Eclipse 2024-03 (version 4.31) release brings speed boosts and newer tools to your computer.

You can set up the program in two main ways. You can grab the official installer file straight from the website or use the Snap Store for a quick, automatic installation.

⚡ 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

Grabbing Eclipse IDE directly from the official Eclipse website starts the setup routine. Locate the Linux version designed for x86_64 computer systems and click the ‘Download’ button to begin the installation process. Extract the downloaded archive and navigate into the resulting directory to launch the setup tool. Step through the prompts, choose the Eclipse IDE for Java development alongside a preferred Java version, then click ‘INSTALL’. Verify that both the ‘create start menu entry’ and ‘desktop shortcut’ options remain checked for quick access later.

Eclipse download link
Eclipse download link

Clicking the ‘Download’ button initiates the package transfer for Eclipse on your Ubuntu machine. Locate the Eclipse Installer built for Linux systems with an x86_64 architecture, then click ‘Download’ to start. Alternatively, 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

Extract the archive using the terminal command shown below once the download completes.

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

Change directories into the extracted folder and run the installer executable.

Command Prompt
cd eclipse-installer
./eclipse-inst

The installation wizard appears immediately after running the script. Select the Eclipse IDE tailored for Java development to proceed through this tutorial.

Eclipse install for Java
Eclipse install for Java

Pick the desired Java version, then trigger the Eclipse deployment by clicking the INSTALL button.

Eclipse install for Java location
Eclipse install for Java location

Click the LAUNCH button once the Eclipse IDE installation finishes. Confirm that the 'create start menu entry' and 'desktop shortcut' options stay selected to locate and open Eclipse IDE without hunting through menus later.

Eclipse launch
Eclipse launch

Eclipse stands ready for use.

Eclipse ready to use
Eclipse ready to use

Launching Eclipse IDE later happens directly from the desktop by clicking its icon.

Install Eclipse using Snap

Snap delivers the latest release quickly. Verify the package manager is active on your system by running sudo apt install snapd (snapd handles containerized software packages on Ubuntu). Executing a single command then pulls Eclipse from the Snap Store, speeding up the process for Ubuntu users.

Acquiring the Snap package manager comes first when setting up Eclipse IDE on Ubuntu 24.04. Install the package manager if it is absent from your system, since Eclipse distributes through a Snap package to streamline updates and deployment.

🐧Bash / Shell
sudo apt install snapd

Run the command below to pull Eclipse through the Snap package manager. The Snap Store deploys the Eclipse IDE for Java developers by default.

🐧Bash / Shell
sudo snap install eclipse --classic

Search for and launch the Eclipse application using the Dock on the left sidebar after installation completes.

Starting the app via the command line works too using the utility below.

💻Code
snap run eclipse

Removing the application requires running the terminal instruction below.

The App Center on Ubuntu 24.04 provides a graphical method for adding Eclipse IDE. Open the App Center, type 'Eclipse' into the search box, and click 'Install'. This action integrates Eclipse IDE into the Ubuntu workspace.

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

Locate Eclipse in the search interface when the window opens.

Eclipse search in app center
Eclipse search in app center

Install the application

Eclipse install from app store
Eclipse install from app store

Search for and open Eclipse through the Dock on the left sidebar once installation finishes.

That completes the setup process.

Conclusion:

Deploying Eclipse IDE on Ubuntu 24.04 accommodates different workflow preferences through multiple pathways. Review the key takeaways below:

  • 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.

Development, debugging, and project management for Java run smoothly inside a flexible workspace once Eclipse is installed. Enjoy building software!

How to install Eclipse enterprise edition in Ubuntu?

Working with the enterprise edition instead? Locate the downloaded installer package in your file manager to proceed. Verify that the file has execution permissions before double-clicking it.

How to download IDE in Ubuntu?

The Eclipse IDE package for the Ubuntu operating system measures around 83 megabytes, so allow a few moments for the download to finish.

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 *