How to install intellij IDEA

I want to learn programming by myself, but I don’t know where to start. Baidu is more difficult to find. Now there is a more convenient way, which is to ask chatgpt directly.

After asking chatgpt, I learned that the currently popular development tool is intellij IDEA, and then asked chatgpt how to download this tool, and gave the download address

1 Tool download and install

https://www.jetbrains.com/idea/download/other.html?utm_source=product&utm_medium=link&utm_campaign=IU&utm_content=2020.1#version20201

insert image description here
But which one should I download with so many versions? The first is to determine the type of computer operating system, mine is windows10

So how to check the type of CPU? Press the shortcut key win+i to find the system.
insert image description here
Click About, you can see that it is an x64 architecture.
insert image description here
After the download is successful, double-click the installation file, and click Next to select the installation
insert image description here
location of the file . An icon will appear on the desktop, double-click to run, and you need to agree to the user agreement when you open it for the first time
insert image description here

insert image description here

insert image description here

insert image description here
insert image description here

2 Install the plugin

To create a spring boot project, you need to use a plug-in. We can’t install it online in the plug-in market. You need to download it manually.

https://plugins.jetbrains.com/plugin/10229-spring-assistant/versions/stable

insert image description here
After downloading, open our IDE, then click Plugins, click the setting icon on the right,
insert image description here
choose to install from local disk
insert image description here
, select the plugin we just downloaded, and install it automatically

Then install the second plugin

https://plugins.jetbrains.com/plugin/17747-spring-boot-assistant/versions#tabs

insert image description here
For the installation method, refer to the above

3 Create a project

Click New Project to create a project
insert image description here
After creation, you can choose the assistant we just installed
insert image description here
Choose to build through maven, choose Jdk 8,
insert image description here
check a dependency and click next
insert image description here

Guess you like

Origin blog.csdn.net/u012877217/article/details/131088277