ntelliJ IDEA2023 latest version installation tutorial (nanny-level tutorial)

IDEA download

IDEA (full name: IntelliJ IDEA) is a product of JetBrains . IntelliJ IDEA is recognized as the most useful Java integrated development tool in the industry. It combines intelligent coding assistance and ergonomic design to make development not only efficient, but also a enjoy.

Download URL: https://www.jetbrains.com/zh-cn/idea/

1. Open the browser and enter https://www.jetbrains.com/

image-20230714212544857

2. Go to Jetbrains official website , click Developer Tools, and then click Intellij IDEA

image-20230714212833749

image-20230714212914820

3. Select the current page to download, click download, and the page will jump.

image-20230714213403716

4. Select the Ultimate version above to download and install. The Ultimate version is the flagship version, which requires payment, and includes complete functions; the Community version is the community version, which is free and only supports some functions. (Note, choose the version of the system that your computer has)

We select the Windows system version and click download to download.

image-20230714214109806

image-20230714214200649

image-20230714214243293

4. IDEA installation (2023 version)

1. After downloading, find the file locally and double-click to run the idea installation program.

image-20230714214536955

image-20230714214650420

2. Click Next

image-20230714214804780

3. Select the installation path and click Next (it is recommended to use the default installation path)

image-20230714215443184

4. Select according to your needs and click Next

image-20230714215850396

5. Default, no need to change, just click Install to install.

image-20230714220007244

6. After the installation is complete, click Finish (you can also check Rebootnow, which will automatically restart the computer)

image-20230714220757345

7. Open IDEA and select “Continue”

image-20230714221408190

image-20230714221656473

Select "Don't Send"

image-20230714221805467

Click "Start trial" to start the trial

image-20230714222603641

8. Test.

Click New Project to create a new project

image-20230714223044087

You can choose different project types, enter the project name, select the project creation path, and click "Create"

image-20230714223548404

Enter the main interface of IDEA to write the project

image-20230714223723295

Click on the "src" folder, right-click to create a new Java class,

image-20230714224004977

After naming it "test1", press the Enter key** (the name can only be in English, not Chinese)**

image-20230714224557445

code show as below:

public class test1 {
    public static void main(String[] args) {
        System.out.printf("Hello world!");
    }
}

image-20230714224748955

Click the green triangle in the upper right corner to run the code; or right-click –RUN (shortcut key: Ctrl+Shift+F10)

image-20230714225126366

The result is as follows:

image-20230714225347203

It ends here!

おすすめ

転載: blog.csdn.net/m0_63451989/article/details/131743186