Installing Eclipse IDE

Welcome!
The first step when starting programming is installing your development environment (IDE).

A development environment is a software that lets you develop, run and debug the programs you create.

The IDE we will be using is “Eclipse IDE for Java developers” (Why Eclipse?).

Prerequisites: Installing Java Development Kit (JDK).
In order to be able to run Eclipse IDE you must download and install JDK first.
See the detailed JDK installation instructions.

Follow the next steps in order to install it on your computer (The installation instructions are for Microsoft Windows OS, if you have another OS, please follow the instructions on the official Eclipse site).

  1. Download the Eclipse IDE installer by clicking on the orange download button in from the download page:
  2. Click download again to actually start the download:
  3. If prompted (in case you’re using Firefox) – click on “Save File”:
  4. When the download is finished – click on the download arrow, and then click on the downloaded file in order to run it:
  5. If prompted – click on “Run” in order to start the installation process:
  6. The first step of the installation is selecting the development tools that the IDE will support. We will select “Eclipse IDE for Java Developers” (The first option) by clicking on it.
  7. Click on the “INSTALL” button to start the installation:
  8. Read and accept the license agreement by clicking “Accept Now”:
  9. Now we wait for the installation is in progress:
  10. After the installation is complete – we can launch the Eclipse IDE:
  11. After clicking the launch button, we will get the Eclipse splash screen:
  12. We will be prompted to select our workspace location, where all the projects will be created – We will select the “Use this as the default and do not ask again” check box, and click on theĀ  “Launch” button.
  13. We should now get the Eclipse welcome screen:

Now you have an IDE installed on your computer and you are ready to start programming!
We will make our first program on the next page.