The Eclipse Installer 2025‑03 R now includes a JRE for macOS, Windows and Linux.
Try the Eclipse Installer 2025‑03 R
The easiest way to install and update your Eclipse Development Environment.
- 771,623 Installer Downloads
5 Steps to Install Eclipse
We’ve recently introduced the Eclipse Installer, a new and more efficient way
to install Eclipse. It is a proper installer (no zip files), with a
self-extracting download that leads you through the installation process. For
those who prefer not to use the Installer, the packages and zip files are still
available on our package download page.
1. Download the Eclipse Installer
Download Eclipse Installer from http://www.eclipse.org/downloads
Eclipse is hosted on many mirrors around the world. Please select
the one closest to you and start to download the Installer
2. Start the Eclipse Installer executable
For Windows users, after the Eclipse Installer executable has finished downloading it should be
available in your download directory. Start the Eclipse Installer executable.
You may get a security warning to run this file. If the Eclipse Foundation is
the Publisher, you are good to select Run.
For Mac and Linux users, you will still need to unzip the download to create the Installer.
Start the Installer once it is available.
3. Select the package to install
The new Eclipse Installer shows the packages available to Eclipse users.
You can search for the package you want to install or scroll through the list.
Select and click on the package you want to install.
4. Select your installation folder
Specify the folder where you want Eclipse to be installed. The default folder will be in your User directory.
Select the ‘Install’ button to begin the installation.
5. Launch Eclipse
Once the installation is complete you can now launch Eclipse.
The Eclipse Installer has done it’s work. Happy coding.
Last Updated :
05 Apr, 2025
Eclipse is one of the most popular Integrated Development Environments (IDEs) used by developers worldwide. Whether you’re coding in Java, Python, C++, or any other programming language, Eclipse provides a powerful and flexible platform to write, debug, and test your applications. However, if you’re new to Eclipse or setting it up on Windows for the first time, the process might seem a bit daunting.
In this blog, we’ll walk you through the straightforward steps to download and install Eclipse on Windows 10 and Windows 11. From ensuring you have the right prerequisites (like Java) to configuring Eclipse for your development needs, this guide will make the setup process smooth and hassle-free.
Why Use Eclipse as IDE
Eclipse is a completely free open-source platform, Integrated Development Environment (IDE) with the help of which several types of applications are made using the Java programming languages and other programming languages are also used such as C/C++, PERL, Python, Ruby, etc.
Eclipse is a preferred choice for developers for several reasons. It provides a user-friendly interface that makes it easy for both beginners and experienced coders. It supports multiple programming languages. It also offers collaborative tools that allow multiple developers to contribute to a project simultaneously.
Eclipse Software incorporates of many plug-ins and is designed to be extensible to the use of extra plug-ins. Eclipse IDE can be used for any programming language for which a plug-in is available.
Famous Plugins Used in Eclipse IDE
Following are some famous plug-ins used in Eclipse IDE :
- The Java Development Tools (JDT) is a plugin that allows Eclipse to be used as a Java IDE.
- PyDev is a plugin that allows Eclipse to be used as a Python IDE.
- C/C++ Development Tools (CDT) is a plug-in that lets in Eclipse for use as C/C++ development.
- The Scala is a plug-in is a plug-in that permits Eclipse for used as an IDE to broaden Scala applications.
- PHPeclipse is a plug-in that permits Eclipse for used as an IDE to increase PHP applications.
Steps to Download and install Eclipse on Windows :
Now let’s look at the step by step process to Download and install Eclipse on Windows:
Step 1: Open Browser
- In the first step, Open your browser and navigate to this URL.
Step 2: Download Eclipse
- Then, click on the “Download” button to download Eclipse IDE.
Step 3: Download EXE
- Now, click on the “Download x86_64” button.
- Then click on the “Download” button. After clicking on the download button the .exe file for the eclipse will be downloaded.
Step 4: Open Download EXE
- Now go to File Explorer and click on “Downloads” after that click on the “eclipse-inst-jre-win64.exe” file for installing Eclipse IDE.
Step 6: Install Eclipse
- Then, click on “Eclipse IDE for Java Developers”.
- Then, click on the “Install” button.
Step 8: Create New Project
- Now click on “Create a new Java project”.
- Now, you’re prepared to make new Java initiatives the usage of eclipse IDE and the display screen will appear like this :
Congratulations! you have successfully Eclipse software download for your Windows PC.
Also Read
- How to Install Eclipse IDE For Java?
- How to Turn on Code Suggestion in Eclipse or Spring Tool Suite?
- How to Use MongoDB in Eclipse?
- How to Use Git with Eclipse?to
Conclusion
Setting up your development environment by installing Eclipse on Windows is a straightforward process that can be completed in just a few steps. By following this guide, you’ll have the Eclipse IDE ready for coding in no time. Whether you’re a beginner or an experienced developer, knowing how to download and install Eclipse IDE on Windows ensures that you have a powerful tool at your disposal for all your programming needs.
JAVA
Apr 03, 2025
2 Min Read
497 Views
(Last Updated)
Eclipse IDE is one of the most popular integrated development environments (IDEs) used for Java development and supports various programming languages like Python, C++, and PHP. Whether you’re a beginner or an experienced developer, installing Eclipse correctly is essential for a smooth coding experience. In this guide, we’ll walk you through the step-by-step process of downloading, installing, and setting up Eclipse IDE on a Windows system.
Follow the below steps to install Eclipse IDE on Windows!
Table of contents
- Step 1:
- Step 2:
- Step 3:
- Step 4:
- Step 5:
- Step 6:
- Step 7:
- Step 8:
- JAVA First program
- Conclusion
- Frequently Asked Questions
- What is Eclipse IDE used for?
- How do I check if Eclipse is installed correctly?
- Can I use Eclipse for languages other than Java?
Step 1:
In the first step, Open your browser and navigate to the Eclipse URL: https://www.eclipse.org/
Step 2:
Then, click on the “Download” button to download Eclipse IDE.
Step 3:
Now, click on the “Download x86_64” button.
Step 4:
Then click on the “Download” button. After clicking on the download button the .exe file for the eclipse will be downloaded.
Step 5:
Now go to “Downloads” and then click on the “eclipse-inst-jre-win64.exe” file to install Eclipse IDE.
Step 6:
Then, click on “Eclipse IDE for Java Developers”.
Step 7:
Then, click on the “Install” button.
Step 8:
Now click on “Create a new Java project”.
Now, you are ready to make new Java projects using Eclipse IDE and the screen will look like this :
Read More: 10 BEST Java IDE for Java Programming Language
JAVA First program
Step 1: To create a new Java project in Eclipse, go to File > New > Project.
Step 2: The New Java Project wizard dialog appears to let you specify configurations for the project. Select the Java Project option in it.
Step 3: After that, you will see the below screen. Enter the project name as HelloWorld. After that, click the Finish button.
Step 4: It is recommended to create a package for your project. Right-click on the project option, and select New > Package from the context menu like this:
Step 5: In the New Java Package dialog, enter the name of your package. Here I have entered com.guvi.helloworldprogram:
Step 6: To create a new Java class under a specified package, right-click on the package and select New > Class from the context menu:
Step 7: The New Java Class dialog appears, type the name of the class as HelloWorld and choose the option to generate the main() method:
Step 8: Edit the generated ‘HelloWorld’ java class as per the following code.
package guvi.helloworldexample;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
Unlock your potential as a Java Full-Stack Developer with our comprehensive Full-Stack development course! Dive deep into the world of Java, mastering front-end and back-end development to build powerful, dynamic web applications. Gain hands-on experience with essential tools and frameworks like Spring Boot, Hibernate, Angular, and React, all while learning best practices for performance optimization and scalable coding. Start your journey today and become the all-in-one developer every company is searching for!
Conclusion
By following this guide, you have successfully installed Eclipse IDE on your Windows system. With Eclipse set up, you can now start writing and running code efficiently. Eclipse provides a powerful and feature-rich development environment for all programming language practitioners.
Frequently Asked Questions
1. What is Eclipse IDE used for?
Eclipse is a free, open-source integrated development environment (IDE) primarily used for Java development but also supports other programming languages like Python, C++, PHP, and more through plugins.
2. How do I check if Eclipse is installed correctly?
After installation, open Eclipse and create a new project. If the IDE launches without errors and allows you to write and execute code, the installation was successful.
3. Can I use Eclipse for languages other than Java?
Yes, Eclipse supports multiple programming languages like Python, C++, JavaScript, and more through additional plugins.
Career transition
About the Author
Lavish Jain
A Professional Developer Mentor and Corporate Trainer with over 10 years of experience, I have contributed to technological advancements through comprehensive training and mentorship. My journey includes pivotal roles at Cluebix, Focus-4D,ThoughtWorks, and currently with Guvi -HCL Group, where I shape the careers of aspiring developers. I specialize in simplifying complex concepts, making them accessible to learners at all levels, and have successfully trained lakhs of budding developer through corporate and boot camp courses focused on full-stack development.
View all post by Lavish Jain
Как установить Eclipse на компьютер? Необходимо сделать 3 шага:
Шаг №1: Перейдите по ссылке http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/keplerr
Шаг №2: Скачайте Eclipse, соответствующий Вашей операционной системе. Где находятся ссылки для скачивания мы показали Вам на картинке ниже — см. в красной рамочке.
Шаг №3: Затем необходимо распаковать скаченный .zip архив в директорию C:\Program Files\
Всё — Eclipse установлен на Вашем компьютере. Поздравляем!
Как запустить Eclipse у Вас на компьютере? Делается это тоже в 3 шага:
Шаг №1: Зайдите на своём компьютере в C:\Program Files\eclipse\ и откройте файл eclipse.exe
Шаг №2: При запуске eclipse.exe откроется вот такое окно (см. картинку ниже). Необходимо в workspace указать где будут храниться программные файлы проекта. Указываем удобную для нас директорию, например, C:\myWorkspace, как мы показали на картинке и далее нажимаем OK.
Шаг №3: Необходимо закрыть приветственное сообщение — см. картинку ниже. Как только Вы закроете это сообщение, Вы перейдете в рабочую среду Eclipse. А как с ней работать мы рассмотрим ниже.
Основы работы с Eclipse
СТАТЬЯ ОБНОВЛЯЕТСЯ…
This article is for newbies, looking for step by step instructions on “How to install Eclipse IDE” in Windows 10. I will also help you to run your first “Hello World” Program in Eclipse Java IDE.
Before diving into details, let’s understand a little bit about Eclipse.
What is Eclipse
Eclipse is an open-source IDE (Integrated development environment) available for cross platforms like Windows, Linux and macOS. The primary use of Eclipse is to develop Java applications but can be used to develop apps in other programming languages also.
Its run-time system is based on Equinox, an implementation of the OSGi core framework specification. Eclipse is flexible and supports different programming plugins like Ruby, Perl, PHP, C, C++, C#, COBOL, D, FORTRAN, GROOVY, JAVASCRIPT and many more to develop applications.
Most of the old versions of Eclipse are scientific names based on moons like Callisto, Europa, Ganymede, Helios, Juno, Neon, Kepler etc.
To Install Eclipse IDE, you need to download the latest version of Eclipse IDE first. The latest version available while writing this article is Eclipse IDE 2021‑03.
Download Eclipse
Step 1.1 – Visit Eclipse.org website
Open your favourite browse and visit “https://www.eclipse.org/downloads/“.
Step 1.2 – Download Eclipse IDE 2021-03 for x86_64 systems
You can simply click on this “Download button” to avoid all hassles and get Eclipse IDE 2021-03 installer for Windows 10.
Alternatively, Click on “Download x86_64” button as shown in image on the download page of Eclipse.org.
It will take you to download the mirror page. Click on “Download” to get “eclipse-inst-jre-win64.exe“.
By default, it selects a mirror near to your country. For example, Japan in my case. You can always change it to your preferred location. Just click on “<<select another mirror” as visible in the image.
If you are looking for an older version of Eclipse for Windows, Linux or macOS. Visit https://www.eclipse.org/downloads/packages/ to download your preferred version.
Install Eclipse IDE 2021-03 for java developers in Windows 10
Step 2.1 – Run Eclipse Installer
Visit your Download directory and <Double click> to run “eclipse-inst-jre-win64” installer.
Step 2.2 – Select Eclipse IDE for Java Developers
Select “Eclipse IDE for Java developers” option on edition selection page.
There are lot of other editions are also available. I would recommend you to just have a quick look by scrolling down.
Step 2.3 – Select your preferred JRE version
In the older version, it was a pre-requisite to install Java first. But now-a-days, JRE is built in Eclipse installer.
Also, you get the list and flexibility to download and install your preferred JRE version. For example, JRE 15.0.2, JRE 14.0.2 and JRE 11.0.2 are available.
I will got with latest and default available JRE 15.0.2 for this tutorial.
Step 2.4 – Customize Eclipse IDE installation location, if required
The default location of the Eclipse IDE 2021-03 installation would be your “user’s home” directory. But in case you want to customize it. You can click on Browse (“Folder icon”) and navigate to your preferred drive or directory to install Eclipse.
I would leave it by default with “C:\users\Devender\eclipse\java-2021-03“.
Step 2.6 – Click on “Install” Eclipse IDE for Java developers
Once you are done with Java virtual machine and Installation folder location. You are ready to Install Eclipse.
You can leave below mentioned options checked –
- Create start menu entry
- Create desktop shortcut
<Click> on “Install” to start Eclipse ide 2021-03 for java developers.
Step 2.7 – Accept Eclipse end user license agreement (EULA)
Like all other software, Eclipse IDE also ask you to agree with End User License Agreement (EULA).
Click “Agree Now” and move further.
Step 2.8 – Let Eclipse IDE installation complete
Now the installation will kick in. It may take some time depending upon “internet” and your system speed. So sit back and relax.
Step 2.9 – Launch Eclipse IDE
Once Eclipse IDE installation completes, You can start Eclipse by clicking on “Launch” button.
Step 2.10 – Select a directory workspace for Eclipse Projects
On the Next Screen after you Launched Eclipse. It will ask you to setup directory for your workspace. Here you can save all your projects and application files.
The default workspace directory would be under “user’s home directory“. For example “C:\Users\Devender\eclipse-workspace” in my case. You can click on “Browse” and customize it as per your wish.
*** To avoid this pop up to bother you again and again, you can select checkbox "Use this as the default and do not ask again". I will leave it default.
Click on “Launch“.
It will take you to the Welcome page of Eclipse IDE for java developers.
Congrats!! you are done with the latest Eclipse 2021-03 installation in your Windows 10 system.
Now, let me show you, How to run your first java code in Eclipse.
Create a Java project and run your First “Hello World” application
Step 3.1 – Select “Create a new Java project”
Lets create our first java project.
- Select “Create a new Java project” on welcome page of Eclipse IDE for Java developers.
Step 3.2 – Enter a Project name and leave all other settings default
- Provide “project name“. For example, I will give it a name “First Hello project“.
- Leave all settings default and hit “Finish“.
Step 3.3 – Don’t create module-info.java file
Select “Don’t create“, when it asks you to provide a module-info.java name to create it.
Step 3.4 – Create a new java class
To create a Java class, follow these simple steps –
- <Right click> on “First Hello Project” in the left pane of “package explorer”
- Select “New” from drop-down
- Select “Class“
Step 3.5 – Give a Name to Java class and make it “Public static void main“
On this screen, You need to enter Java “Class name“. for example, I have given “HelloWorld” as name.
Also, Select “Public static void main (String[] args)” option in “which method stubs would you like to create section“.
Leave all other settings default and click Finish.
Step 3.6 – Write your first code “Hello World”
Now type the below-mentioned code into your first “HelloWorld.java” file. Please refer to the image, don’t delete or modify the already available code.
System.out.println("Hello, World!");
Step 3.7 – Run your first program
To execute your program follow theses steps –
- Click on Run or press <Ctrl + F11> on your keyboard.
- Click “OK” on Save and Launch dialogue box as shown in the image.
Step 3.8 – Validate Program output
Verify Program output in console. You will see “Hello World!” text, if you program runs perfectly.
Hurray!! you have ran your first Java program in Eclipse IDE 2021-03.
Video tutorial
In case you have any doubt in tutorial, You can watch out this useful video on “How to install Eclipse IDE in Windows 10“.
Ending note
I hope you liked this tutorial on “How to Install Eclipse IDE 2021-03 for Java developers. Now you free to explore the Java world in Eclipse IDE.
Which is your favourite IDE for java development application? You can let me know through your comments!!
Further readings –
Keep learning and stay safe in this pandemic.
