Skip to content

Instantly share code, notes, and snippets.

@alexislucena
Created December 2, 2016 10:33
Show Gist options
  • Save alexislucena/1327449615e83bdebde1733199c72210 to your computer and use it in GitHub Desktop.
Save alexislucena/1327449615e83bdebde1733199c72210 to your computer and use it in GitHub Desktop.
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/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment