How To Install IntelliJ IDEA On Debian 10 / Debian 9 Apr 20, 2020 Raj 4 min read CONTENTS System Requirements Install IntelliJ IDEA Using snap Using Official Package Create a Project Conclusion SHARE THIS DOCUMENT IS ALSO AVAILABLE FOR Ubuntu 18.04 Ubuntu 16.04 Linux Mint 19 IntelliJ IDEA is an IDE (integrated development environment) for application development, developed by JetBrains. It has a built-in terminal, database tools, code completion, inline debugger, and supports detecting duplicates, connecting to Docker containers and application servers such as TomcatJBoss, etc. IntelliJ IDEA’s core package supports Java, Groovy, Kotlin, and XML/XSL languages. You can install plugins to support other languages such as Go, Python, Perl, Erlang, etc. IntelliJ IDEA supports the integration of build automation tools such as Maven, Ant, and Gradle, version controls systems such as Git and SVN. In this guide, we will see how to install IntelliJ IDEA on Debian 10 / Debian 9. System Requirements Ensure your system meets the below requirements for the IntelliJ IDEA installation. 2 GB RAM minimum, 4 GB RAM recommended 2.5 GB disk space. SSD recommended 1024×768 minimum screen resolution Install IntelliJ IDEA IntelliJ IDEA is available in two editions, community and ultimate. There are few programming languages and technologies only supported in IntelliJ IDEA’s ultimate edition. Before you install IntelliJ IDEA, compare the community and ultimate editions, and decide which one suits your needs. We can install IntelliJ IDEA on Debian using the snap package manager (the most straightforward way) or download and install the IntelliJ IDEA from the official site. Using snap First, install the snap package manager using the apt command in case your system doesn’t have it. sudo apt update && sudo apt install -y snapd Run the following command to install the IntelliJ IDEA community edition. sudo snap install intellij-idea-community --classic To install the IntelliJ IDEA Ultimate edition, replace intellij-idea-community with intellij-idea-ultimate. The installation would take some time, depending upon the internet connection speed. Upon successful installation, you will get the below message. intellij-idea-community 2020.1 from jetbrains* installed Start IntelliJ IDEA from Activities » Search for IntelliJ IDEA. Start IntelliJ IDEA Community Edition Select the confirmation checkbox to accept the terms of the user agreement and then click on the Continue button. Jetbrains Privacy Policy Decide whether to share anonymous statistics to JetBrains to improve its products or not. Data Sharing On the next screen, you will be asked to customize the IntelliJ IDEA installation. Choose the theme for the IntelliJ IDEA interface and then click Next. Choose Theme Few plugins are enabled by default. You can choose to disable the unneeded default plugins depending on your requirement. Then, click Next. Default Plugins Consider installing IntelliJ IDEA featured plugins if they are useful for you. Otherwise, click on Start Using IntelliJ IDEA to complete the installation Install Featured Plugins Skip to Create A New Project. Using Official Package Download the latest version of IntelliJ IDEA from the official website. OR In the command line, use the below command to download IntelliJ IDEA community edition v2020.1. wget https://download-cf.jetbrains.com/idea/ideaIC-2020.1.tar.gz To install IntelliJ IDEA ultimate edition, download https://download.jetbrains.com/idea/ideaIU-2020.1.tar.gz package. Extract the downloaded archive using the tar command. tar -zxvf ideaIC-*.tar.gz sudo mkdir /opt/idea/ sudo chmod 777 /opt/idea/ mv idea-*/* /opt/idea/ Then, run the idea.sh. cd /opt/idea/bin/ sh idea.sh Select the confirmation checkbox to accept the terms of the user agreement and then click on the Continue button. Jetbrains Privacy Policy Decide whether to share anonymous statistics to JetBrains to improve its products or not. Data Sharing On the next screen, you will be asked to customize the IntelliJ IDEA installation. Choose the theme for the IntelliJ IDEA interface and then click Next. Choose Theme Create a desktop entry to start the IntelliJ IDEA from Activities. Optional: Select For all users in case your system has more than one active user accounts. This option requires root or superuser privileges. Desktop Entry Also, create a Launcher script to start IntelliJ IDEA with the command idea from a terminal. Create Launcher Script Few plugins are enabled by default. You can choose to disable the unneeded default plugins depending on your requirement. Then, click Next. Default Plugins Consider installing IntelliJ IDEA featured plugins if they are useful for you. Otherwise, click on Start Using IntelliJ IDEA to complete the installation. Install Featured Plugins Enter your password in case the IntelliJ IDEA wizard asks you for completing the Installation. Enter Password to Cmplete IntelliJ IDEA Set Up Create a Project Once you finish the installation IntelliJ IDEA, the wizard will open up a window where you can create a new project or import a project. Create a New Project Follow the JetBrains video tutorial to create your first Java application project. To develop Java applications in IntelliJ IDEA, you would need to set Java SDK (location of Java JDK). Java SDK can be found in the below paths based on the IntelliJ IDEA installation method. /opt/idea/jbr (Official release) /snap/intellij-idea-community/current/jbr/ (Snap) JDK Location The following screenshot shows the version of the IntelliJ IDEA community edition. IntelliJ IDEA Community Edition Conclusion That’s All. I hope you learned how to install IntelliJ IDEA on Debian 10 / Debian 9. Visit the IntelliJ IDEA’s documentation page to get started with IntelliJ IDEA. debian-10 debian-9 intellijidea ide Prev Post How To Install Apache Tomcat on Debian 10 / Debian 9 Next Post How To Install Gradle on Debian 10 / Debian 9 RELATED POSTS How To Install Apache Tomcat on Debian 10 / Debian 9 How To Install Ruby on Rails on Debian 10 / Debian 9 How To Install Apache Maven on Debian 10 / Debian 9 How To Install Node.js on Debian 10 / Debian 9 How To Install MongoDB 4.4 / 4.2 / 4.0 on Debian 10 Please enable JavaScript to view the comments powered by Disqus. comments powered by Disqus RECENT POSTS How To Install VirtualBox On Linux Mint 20 How To Backup and Restore Ubuntu & Linux Mint With Timeshift How To Upgrade To Linux Mint 20 From Linux Mint 19 [Detailed Guide] How To Install KVM On Ubuntu 20.04 / Linux Mint 20 How To Install Plex Media Server On Ubuntu 20.04 / Linux Mint 20 How To Install Android Studio on Ubuntu 20.04 TOP POSTS Install xrdp on CentOS 7 / RHEL 7 Install Gnome GUI on CentOS 7 / RHEL 7 Change default network name (ens33) to old “eth0” on Ubuntu… Install μTorrent (uTorrent) on Ubuntu 14.04 How To Configure High-Availability Cluster on CentOS 7 /… How To Install and Configure VNC Server in CentOS 7 / RHEL 7