How to install Intellij IDEA on Ubuntu?

前端 未结 11 2249
無奈伤痛
無奈伤痛 2020-12-12 10:10

I\'m new to Ubuntu and Linux in general. I want to code in Java on my computer, but I\'m having problems installing IntelliJ IDEA on Ubuntu. I have downloaded and extracted

11条回答
  •  孤街浪徒
    2020-12-12 10:36

    try simple way to install intellij idea

    Install IntelliJ on Ubuntu using Ubuntu Make

    You need to install Ubuntu Make first. If you are using Ubuntu 16.04, 18.04 or a higher version, you can install Ubuntu Make using the command below:

    1. sudo apt install ubuntu-make

    Once you have Ubuntu Make installed, you can use the command below to install IntelliJ IDEA Community edition:

    1. umake ide idea

    To install the IntelliJ IDEA Ultimate edition, use the command below:

    1. umake ide idea-ultimate

    To remove IntelliJ IDEA installed via Ubuntu Make, use the command below for your respective versions:

    1. umake -r ide idea
    2. umake -r ide idea-ultimate

    you may visit for more option.

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

提交回复
热议问题