A detailed tutorial to teach you how to install the latest version of Eclipse (very detailed and very practical)

Introduction

First of all, it is stated that this article is mainly aimed at testing rookies or guys who are just getting started or children's shoes, there is no need for big guys to read down.

  The reason for writing this article is because this tool will be used later, but for some reasons some friends and children’s shoes may not install this tool, in order to facilitate the follow-up learning of friends and children’s shoes and not discourage their enthusiasm , because 80% of people die on the first threshold of tool installation, which is neither high nor too low. So I took the time to read this article.

Step 1: Download eclipse and install it.

1. First open the official address (see below)

Eclipse official download address: Click to open the official link

Download link: http://www.eclipse.org/downloads/

2. Click Download Packages;

3. Download the installation package

As shown in the picture: Choose 64-bit according to your own system, click the corresponding link to download (a page that requires you to pay may pop up, not eclipse needs to pay, this is just asking you to donate money, ignore it)

After the download is complete, decompress the installation package, and the decompression path is optional.

After opening, select the file in the picture, create a shortcut on the desktop, the installation is over, you can try to double-click to open and run it, there should be a bug. (this is because the JDK is not installed)

Step 2: Download the JDK.

1. Download the JDK installation package

Give the download link first: http://www.oracle.com/technetwork/java/javase/downloads/index.html

2. After clicking java, in the first box, click Accept License Agreement

3. After the download is complete, open all the way to confirm the installation.

The third step: java environment variable configuration.

1. My Computer -> Right Click -> Properties -> Advanced System Settings -> Environment Variable Settings

 

 

 2. Variable configuration

To make the system variable (the second box is the system variable) have the two variables path and classpath, the method is:

Click New, variable name: path, variable value: the JDK installation path just now, for example mine: C:\Program Files\Java\jdk1.8.0_121\bin.

Also new, variable name: classpath, variable value: C:\Program Files\Java\jdk1.8.0_121\jre\lib\rt.jar

At this point, the configuration has been completed, and then you can open the DOS command (right click on the start menu, run: CMD) and enter javac, and it will be displayed as shown in the figure below.

3. The second configuration method:

"Variable name": JAVA_HOME

"Variable value": C:\Program Files\Java\jdk1.7.0_07//The disk path of the jdk you installed

"Variable Name": Path

"Variable value": %Java_Home%\bin;%Java_Home%\jre\bin;

"Variable Name": ClassPath

"Variable value": .;%Java_Home%\bin;%Java_Home%\lib\dt.jar;%Java_Home%\lib\tools.jar

Note: It is best to paste the above code with one character unchanged, and the .; at the beginning of "variable value" should not be missed.

After completing the above three steps, the configuration of environment variables has been completed.

Check the environment variables and set it up: call up "cmd" to check

1. Type: "java", you should see the following:

2. Type "javac" and you should see something like this:

3. Type "java -version" and you should see something like this:

After installing and configuring the environment variables, double-click the Eclipse icon on the desktop again, and Eclipse starts successfully.

summary

        Well, so far the installation of Eclipse has been completed and completed.


              [The following is the most complete software test engineer learning knowledge architecture system diagram in 2023 that I compiled]


1. From entry to mastery of Python programming

2. Interface automation project actual combat

3. Actual Combat of Web Automation Project


4. Actual Combat of App Automation Project

5. Resume of first-tier manufacturers


6. Test and develop DevOps system

7. Commonly used automated testing tools


Eight, JMeter performance test

9. Summary (little surprise at the end)

life is long so add oil. Every effort will not be let down, as long as you persevere, there will be rewards in the end. Cherish your time and pursue your dreams. Don't forget the original intention, forge ahead. Your future is in your hands!

Life is short, time is precious, we cannot predict what will happen in the future, but we can grasp the present moment. Cherish every day and work hard to make yourself stronger and better. Firm belief, persistent pursuit, success will eventually belong to you!

Only by constantly challenging yourself can you constantly surpass yourself. Persist in pursuing your dreams and move forward bravely, and you will find that the process of struggle is so beautiful and worthwhile. Believe in yourself, you can do it!

                               

Guess you like

Origin blog.csdn.net/NHB456789/article/details/132082849