June 8, 2022 in Tutorial2 minutes

In this tutorial, we learn how to install IntelliJ IDEA on Ubuntu 22.04 LTS (Jammy Jellyfish).
IntelliJ IDEA is an Integrated Development Environment (IDE) for JVM languages designed to maximize developer productivity. It does the routine and repetitive tasks for you by providing clever code completion, static code analysis, and refactorings, and lets you focus on the bright side of software development, making it not only productive but also an enjoyable experience.
We can install IntelliJ IDEA using snap. You can use one of the command below to install IntelliJ IDEA based on the edition that you have:
To install IntelliJ IDEA community edition using snap you can use the command below
sudo snap install intellij-idea-community --classicTo install IntelliJ IDEA ultimate edition using snap you can use the command below
sudo snap install intellij-idea-ultimate --classicTo install IntelliJ IDEA education edition using snap you can use the command below
sudo snap install intellij-idea-educational --classicDownload Toolbox App using the command below:
wget -c https://download.jetbrains.com/toolbox/jetbrains-toolbox-1.24.12080.tar.gzExtract downloaded toolbox using the command below (note: to get the latest version you can visit JetBrains Toolbox App page:
sudo tar -xzf jetbrains-toolbox*.tar.gz -C /optOpen the toolbox app
/opt/jetbrains-toolbox-1.24.12080/jetbrains-toolboxwget -c https://download.jetbrains.com/idea/ideaIC-2022.1.2.tar.gzextract
sudo tar -xzf ideaIC-2022.1.2.tar.gz -C /optOpen IntelliJ IDEA using the command below
/opt/idea-IC-221.5787.30/bin/idea.sshInstall software-properties common so we can have apt-add-repository command and apt-transport-https to enable https support. You can use the the command below:
sudo apt install software-properties-common apt-transport-httpsAdd Marcel Kapfer PPA repostory using the command below:
sudo add-apt-repository ppa:mmk2410/intellij-ideaUpdate apt metadata
sudo apt updateInstall IntelliJ IDEA using the command below
sudo apt install intellij-idea-communityIf you’re installing IntelliJ IDEA using apt or snap, you can start the IntelliJ IDEA software by using the below command that corresponds to your edition:
To run IntelliJ IDEA Community edition you can use the command below
intellij-idea-communityTo run IntelliJ IDEA Ultimate edition you can use the command below
intellij-idea-ultimateTo run IntelliJ IDEA Education edition you can use the command below
intellij-idea-educationalIn this tutorial, we learn various ways to install IntelliJ IDEA. We learned installing IntelliJ using snap, toolbox app, apt and install it as standalone