alexislucena
12/2/2016 - 10:33 AM

Ubuntu: Install IntelliJ IDEA on Ubuntu

Ubuntu: Install IntelliJ IDEA on Ubuntu

Check if Java is installed

$ java -version

Install Ubuntu Make from PPA

$ sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
$ sudo apt-get update
$ sudo apt install ubuntu-make

Install IntelliJ IDEA Community edition with Ubuntu Make

$ umake ide idea

To remove IntelliJ IDEA

$ umake -r ide idea

To remove Ubuntu Make:

$ sudo apt-get remove ubuntu-make

To remove Ubuntu Make PPA

$ sudo add-apt-repository --remove ppa:ubuntu-desktop/ubuntu-make

Source: https://itsfoss.com/install-intellij-ubuntu-linux/