-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Seanti edited this page Mar 24, 2025
·
6 revisions
IntelliJ IDEA is one of the best IDEs (Integrated Development Environments) for Java development. Here’s a step-by-step guide to downloading, installing, and setting it up.
- Open a web browser and go to the official JetBrains website:
👉 https://www.jetbrains.com/idea/download - You’ll see two versions available:
- Ultimate (Paid, for professional development)
- Community (Free, for basic development)
- ✅ If you're just starting, the Community Edition is recommended.
- Click the Download button under "Community Edition."
-
Open the downloaded installer file.
-
Follow the installation wizard:
-
Windows:
- Click Next until you reach the "Choose Components" screen.
- Select:
- ✅ "64-bit launcher" (if applicable)
- ✅ "Add launchers dir to PATH" (optional but useful)
- Click Next, choose the installation folder, and then click Install.
-
Mac:
- Drag the IntelliJ IDEA app into the "Applications" folder.
-
Linux:
- Extract the downloaded
.tar.gzfile. - Run the
idea.shscript from the extracted folder.
- Extract the downloaded
-
- Launch IntelliJ IDEA after installation.
- Choose a theme (Light or Dark) and click Next.
- Select necessary plugins:
- Keep defaults for now; plugins can be installed later.
- Click Start using IntelliJ IDEA.
If you’ll be coding in Java, you need the Java Development Kit (JDK).
- Go to 👉 https://adoptium.net/
- Download and install the latest LTS (Long-Term Support) version.
- Open IntelliJ IDEA.
- Go to File > Project Structure > SDKs.
- Click ➕ and select the installed JDK folder.
- Click New Project.
- Choose Java (or another language if needed).
- Select the JDK (install one if needed).
- Click Create to start coding!
-
Create a new Java Class (
Main.java). -
Write this basic program:
public class Main { public static void main(String[] args) { System.out.println("Hello, IntelliJ!"); } }
-
Click Run
▶️ to execute it.
✅ Congratulations! You’ve successfully installed and set up IntelliJ IDEA! 🎉