- March 9, 2025
- Posted by: Onsys
- Category: Software Development
No Comments
1. Download IntelliJ IDEA Community Edition
- Go to the official JetBrains website:
👉 https://www.jetbrains.com/idea/download/ - Under the Community edition (free version), click Download.
- Once the download is complete, proceed to installation.
2. Install IntelliJ IDEA Community Edition
For Windows
- Locate the downloaded
.exe
file and double-click to run the installer. - Click Next and choose an installation folder.
- Select additional components:
- 64-bit launcher (for easier access)
- Add “Open Folder as Project” (optional, for Windows Explorer)
- Update PATH variable (to use
idea
command in the terminal)
- Click Install, then wait for the installation to complete.
- Once installed, click Finish and launch IntelliJ IDEA.
For macOS
- Locate the downloaded
.dmg
file and double-click to open it. - Drag and drop the IntelliJ IDEA icon into the Applications folder.
- Open the Applications folder and double-click IntelliJ IDEA to launch it.
For Linux (Ubuntu/Debian)
- Open the terminal and navigate to the downloaded
.tar.gz
file. - Extract the archive: bashCopyEdit
tar -xzf ideaIC-*.tar.gz -C /opt
- Navigate to the bin folder inside the extracted directory: bashCopyEdit
cd /opt/idea-IC-*/bin
- Run IntelliJ IDEA: bashCopyEdit
./idea.sh
3. Activate IntelliJ IDEA Community Edition
The Community Edition is free and does not require activation.
When you first open IntelliJ IDEA:
- Accept the User Agreement.
- Select whether you want to share data with JetBrains (optional).
- Click Continue to start using the IDE.
4. Set Up IntelliJ IDEA for First Use
Configure the UI
- Choose a UI theme (Light/Dark).
- Set up the keymap (default, Eclipse, or VS Code shortcuts).
- Customize the font size and appearance if needed.
Install Plugins (Optional)
- Go to File → Settings → Plugins.
- Search for plugins like Python, JavaScript, GitHub, Docker, etc.
- Click Install, then restart IntelliJ IDEA.
5. Create Your First Project
For Java
- Click New Project.
- Select Java as the project type.
- Choose a JDK (Java Development Kit):
- If you don’t have one, click Download JDK.
- Click Next, then Finish to create the project.
- In the
src
folder, right-click → New → Java Class. - Write a simple Java program: javaCopyEdit
public class Main { public static void main(String[] args) { System.out.println("Hello, IntelliJ!"); } }
- Click Run (Green play button) to execute.
6. Using IntelliJ IDEA: Essential Features
Run & Debug
- Click the Run button (▶) to execute your code.
- Use the Debugger (🐞) to step through code.
Version Control (Git)
- Go to VCS → Enable Version Control.
- Choose Git, then commit & push changes.
Code Formatting & Shortcuts
- Format code:
Ctrl + Alt + L
(Windows/Linux) orCmd + Option + L
(Mac). - Auto-complete:
Ctrl + Space
(Windows/Linux) orCmd + Space
(Mac).
Terminal & Database Tools
- Open terminal:
Alt + F12
(Windows/Linux) orCmd + Option + T
(Mac). - Use built-in database tools for connecting to databases.
7. Updating IntelliJ IDEA
- Go to Help → Check for Updates.
- If an update is available, click Download and Restart.