Hey Guys, Eclipse Foundation has released a new version of Eclipse that is Eclipse IDE 2021-03. If you don’t know about Eclipse IDE then let me tell you that Eclipse is an Integrated Development Environment uses for computer programming. It is most famous among Java developers because it is widely used for Java Development.
Here in this article, we are going to taking a look at How to Download and Install Eclipse IDE on Windows 10 For Java Development. Before Install Eclipse IDE, we need to install and set up Java JDK on our windows 10 computer.
Also Read: How to Install and Setup Java JDK on Windows 10
How to Download Eclipse IDE 2021-03
Downloading an Eclipse IDE is very easy just open your browser, search for Eclipse IDE and open the link from eclipse.org, click on Download. It will download an Eclipse installer file.
After the download has been completed, follow the following steps to install it.
How to Install Eclipse IDE 2021-03
In this section, we’ll discuss the steps to install the Eclipse IDE (Integrated Development Environment) on Windows 10. Here we also included a video tutorial, if you find difficulties to follow the steps mentioned below.
Step 1: After the download has been completed open eclipse installer file.
Step 2: Now if you find any notification regarding update. Ee need to update the eclipse installer file before installing “Eclipse IDE for Java Developers”. For that simply click on the Hamburg menu, click on Update and accept the license agreement.
Note:- After the updates were installed, press OK to restart.

Step 3: If you don’t find any update notification then you can, click on Eclipse IDE for Java Developers. Click on “INSTALL” and accept the licence agreement in order to install Eclipse IDE 2021-03 for Java Developers. (An active internet connection in need to install Eclipse IDE).
Note:- You can also use Eclipse IDE for other programming languages such as C, C++, PHP and JavaScript.

Step 4: After the installation complete “LAUNCH” Eclipse IDE.
Creating Workspace Location
After the installation is completed launch eclipse IDE. By default, it will create a workspace location, if you want to change it you can change. I will suggest you keep it default then click on launch.

After all these, you are ready to use the software for your Java Project. Are you interested in Java Programming? If your answer is “Yes”, then you can check our Java Tutorial Playlist.
How to Create First Java Project using Eclipse IDE
Here are steps to create your first Java project using Eclipse IDE on Windows 10:
Step 1: Click on File > New > Java Project, name your project and click on “Finish“.

Step 2: Now name your module to create a new module-info.java file and click on “Create“.
Note:- Discouraged module name. By convention, module names usually start with a lowercase letter

Step 3: Before you create your Java class file, you have to create “Package”. To create right-click on the src folder from the Package Explorer > New > Package, name your Java Package and click on Finish.
Note:- Discouraged package name. By convention, package names usually start with a lowercase letter

Step 4: Now to create a class file, right-click on the src folder from the Package Explorer > New > Class, name your Java Class file, select “public” modifier. After that select the “public static void main(String[] args)” method and click on Finish.
Note:- Type name is discouraged. By convention, Java type names usually start with an uppercase letter.

Step 5: Now to run your Java file click on “Run” from the toolbar or use shortcut key Ctrl+F11.