eclipse installation tutorial (win10 version, very complete)

The first step: download the JDK.
First give the download link: http://www.oracle.com/technetwork/java/javase/downloads/index.html and
Insert picture description here
then choose according to your own system, x86 represents 32-bit, x64 represents 64-bit. Click the corresponding jdk to download.
Insert picture description here
Insert picture description here
Download after agreeing. (Remember where to download, and after opening it, agree to install it all the way)
Remember where you installed Jdk, do not have Chinese in the file path, sometimes it will not be recognized, I installed jdk to the java folder of D drive
Insert picture description here

The second step: java environment variable configuration. ( This is the first method. There is also a second method to set JAVA_HOME. Personally recommend the second method. I will read the first method first, and the second method is almost the same)
My Computer -> Right-click -> Properties -> Advanced System Settings -> Environment variable setting
Insert picture description here
Insert picture description here
Find the directory where you downloaded jdk before and copy the bin directory path
Insert picture description here
Insert picture description here
back to the environment variable, and copy the path to the path path. (As shown in the figure below)
Insert picture description here

The second method, the order of looking for the environment variables is the same.
My computer -> right click -> properties -> advanced system settings -> environment variable settings
copy the path where you installed jdk ( note that it is not the path of the bin directory )
Insert picture description here
Go back to the environment variables, click New, create JAVA_HOME, copy your jdk path, as shown in the figure below.
Insert picture description here
Insert picture description here
Go back to the environment variables and modify the path, as shown in the figure below.
Insert picture description here
Note the format %JAVA_HOME%\bin; the
Insert picture description here
third step is to verify that
windows+r is successfully configured , Enter cmd,
Insert picture description here
enter javac.exe and press
Insert picture description here
Enter
Insert picture description here
. Step 4, download eclipse, and carry out the Chinese package. (If you have a Chinese resource package, just use the Chinese resource package directly. I don’t need to read my tutorial. I will
download the English version first, and then download the Chinese package.) Download link: http://www.eclipse.org/downloads/

Insert picture description here
Click Download Packages , Enter the Eclipse download page. Select the version suitable for the current system from the back of Eclipse IDE for Java EE Developers, click the 64 bit button here to download the 64 bit installation package (pay attention to your own version)
Insert picture description here
Click "64-bit" to jump to the "Choose a mirror close to you" interface. Click "Sellect Another Mioor" and select "Dalian Neusoft Institute of Information". After the
Insert picture description here
download is complete or the download does not start, enter the page shown below. If the download does not start, click "click here" to restart the download.
Insert picture description here
Note that after the download is a reward interface, you don't need to pay any money.
Insert picture description here
After the download is complete, you will get a compressed file named eclipse_java_mars_2_win32_x86_64.zip. The installation of Eclipse is very simple, just unzip the downloaded compressed package, and then double-click the eclipse.exe file. When Eclipse is started for the first time, the user will be asked to select a workspace (Workspace)
Insert picture description here
and then it will be finished.
Eclipse has a sub-project, Babel, which is responsible for the multi-language package of the Eclipse program. Its official website is www.eclipse.org/babel. After entering The home
Insert picture description here
page of the Babel project is shown in the figure. From the page navigation, click the Downloads link to enter the download page. Under the title of Babel Language Pack Zips on the download page, select the hyperlink corresponding to the Eclipse version to download the language pack.
Insert picture description here
In the language selection page that enters, a list of all languages ​​currently supported is listed, from which click the Chinese (Simplified) link to enter the download of Simplified Chinese The list is divided into multiple ZIP archives for different plug-ins and functions. Click the BabelLanguagePack_birt_zh_4.5.0.v20151128060001.zip link from the list to download the full version of the language pack
Insert picture description here
Insert picture description here
After downloading, you will get a .zip file, unzip it and overwrite the features directory and plugins directory with the same name in the Eclipse\drogins folder, so that the language pack will be automatically loaded next time you start Eclipse.
In the workspace selection page, click the "Browse" button, put the workspace in the folder of your choice, and then select the "Use this value as the default value and do not ask again" check box, and then click "OK" "Button.
Start Eclipse and enter the welcome interface of Eclipse. Select the "Help" | "About Eclipse" command, you can view the current Eclipse detailed information in the pop-up dialog box.

Guess you like

Origin blog.csdn.net/qq_41661800/article/details/112006608