Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

Eclipse installation


May 24, 2021 Eclipse


Table of contents


Eclipse installation

Download Eclipse at: http://www.eclipse.org/downloads/. The download page lists Eclipse IDEs in different languages that you can download as you want.

Each installation package for Eclipse is different, and Java developers typically use Eclipse IDE for Java Developers to develop Java applications.

On the right side of the list are Windows, Linux and Mac operating systems and corresponding 32-bit and 64-bit installation packages, which you can download depending on your system.

Eclipse installation

Install Eclipse

Eclipse is a Java-based scalable development platform, so before installing Eclipse you need to make sure that your PC has JDK installed, and that your JDK installation can view our Java development environment configuration.

Eclipse installation is very simple, you only need to download the compression package, decompression can be used, into the folder, the red box is shown in the eclipse startup program

Eclipse installation

If you open Eclipse and find the dialog box below, your PC does not have a JDK environment installed.

Eclipse installation

The first time you open the work environment that needs to be set up, you can specify a working directory, or use the default C disk working directory, click the ok button.

Eclipse installation

Create a project: Select file--New--java Project, pictured:

Eclipse installation

Enter the project name, such as I enter test, and then click finish

Eclipse installation

To complete the creation of the project, click on the small icon in the red box, pictured:

Eclipse installation

Then select the test item in the left menu, right-click --new--class

Eclipse installation

Type the class name, such as enter test, as shown, and then click finish

Eclipse installation

So you can start typing code in the code box!

Eclipse installation