IntelliJ IDEA is the reference IDE for Kotlin — JetBrains builds both. You can use Community Edition for pure Kotlin/JVM learning; Android Studio is IDEA-based and includes Kotlin out of the box. You need a JDK installed (17+ is a safe LTS choice today); the New Project wizard lets you pick Kotlin/JVM and Gradle with Kotlin DSL or Groovy.
Install a JDK first
Install IntelliJ IDEA
Create your first Kotlin/JVM project
After Gradle imports, open src/main/kotlin. The green gutter icon next to fun main() runs your entry point; the Run tool window shows stdout. Enable “Auto-import” and trust the project so the Kotlin plugin indexes dependencies.