• Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial News Comments FAQ Related Articles

How to install intelliJ IDEA in Ubuntu

{{postValue.id}}

To install intelliJ IDEA in Ubuntu 16.04

IntelliJ IDEA is an integrated development environment (IDE) for Java. In this article we will learn how to install IntelliJ IDEA in Ubuntu.

To install intelliJ IDEA

Before installing IntelliJ on Ubuntu, install Java.
Run the following command to check whether java is installed or not.

root@linuxhelp:~# dpkg -l | grep java
ii  gir1.2-javascriptcoregtk-4.0:amd64         2.10.9-1ubuntu1                                     amd64        JavaScript engine library from WebKitGTK+ - GObject introspection data
ii  java-common                                0.56ubuntu2                                         all          Base package for Java runtimes
ii  javascript-common                          11                                                  all          Base support for JavaScript library packages
ii  libjavascriptcoregtk-1.0-0:amd64           2.4.11-0ubuntu0.1                                   amd64        JavaScript engine library from WebKitGTK+
ii  libjavascriptcoregtk-4.0-18:amd64          2.10.9-1ubuntu1                                     amd64        JavaScript engine library from WebKitGTK+
ii  oracle-java7-installer                     7u80+7u60arm-0~webupd8~1                            all          Oracle Java(TM) Development Kit (JDK) 7

Add intellij repo file using “ add-apt-repository” command.

root@linuxhelp:~# add-apt-repository ppa:mmk2410/intellij-idea-community
 Unofficial .deb packages of the latest version of IntelliJ IDEA Community Edition by JetBrains
Git: http://git.mmk2410.org/intellij-idea-community/
 More info: https://launchpad.net/~mmk2410/+archive/ubuntu/intellij-idea-community
Press [ENTER] to continue or ctrl-c to cancel adding it
gpg: keyring `/tmp/tmpm_ykarif/secring.gpg'  created
gpg: keyring `/tmp/tmpm_ykarif/pubring.gpg'  created
gpg: requesting key 9263FB77 from hkp server keyserver.ubuntu.com
gpg: /tmp/tmpm_ykarif/trustdb.gpg: trustdb created
gpg: key 9263FB77: public key " Launchpad PPA for Marcel Kapfer"  imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
OK

Update apt source using the following command.

root@linuxhelp:~# apt-get update
Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [94.5 kB]
Hit:2 http://ppa.launchpad.net/enlightenment-git/ppa/ubuntu xenial InRelease
Hit:3 http://in.archive.ubuntu.com/ubuntu xenial InRelease                     
Hit:4 http://ppa.launchpad.net/gns3/ppa/ubuntu xenial InRelease                
Get:5 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease [94.5 kB]   
.
.
.
Get:18 http://in.archive.ubuntu.com/ubuntu xenial-updates/universe Translation-en [78.7 kB]
Get:19 http://in.archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [3,328 B]
Get:20 http://in.archive.ubuntu.com/ubuntu xenial-updates/multiverse i386 Packages [3,492 B]
Get:21 http://in.archive.ubuntu.com/ubuntu xenial-updates/multiverse Translation-en [1,540 B]
Fetched 1,224 kB in 13s (92.2 kB/s)                                            
Reading package lists... Done

Install intellj community edition by using the following command.

root@linuxhelp:~# apt-get install intellij-idea-community
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  gcc-5-multilib gcc-multilib lib32asan2 lib32atomic1 lib32cilkrts5
  lib32gcc-5-dev lib32gcc1 lib32gomp1 lib32itm1 lib32mpx0 lib32ncurses5
  lib32quadmath0 lib32stdc++6 lib32tinfo5 lib32ubsan0 lib32z1 lib32z1-dev
.
.
.
.
Setting up lib32z1-dev (1:1.2.8.dfsg-2ubuntu4) ...
Setting up intellij-idea-community (2016.1.3-1) ...
Processing triggers for libc-bin (2.23-0ubuntu3) ...

After installation, open intellij tool
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-open-intellij
Select the type of installation and click " OK"
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-installation-type
Read and accept the license agreement.
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-license
Select the type of customisation theme. Here, we are choosing Darcula.
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-customisation-Darcula
In Create desktop entry wizard, select “ next:launch script” .
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-Create-desktop-entry-launch-script
Install the required plugins and click “ start using intellij IDEA”
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-Install-plugins
welcome page of intellij IDEA appears. Click Project Defaults &rarr Settings
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-welcome-page-Settings
Go to terminal, select the path and click OK
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-terminal
Select “ create new project”
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-create-new-project
Select your language and click “ next” .
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-language
Set the project name, path and then click “ finish” .
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-project-name-path
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-finish
Now start creating your projects using Intellij IDEA.
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-create-projects

Tags:
elijah
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What is IntelliJ idea used for?

A

This environment is used especially for the development of programs

Q

How do I start programming in IntelliJ?

A

Select System (java.lang) by pressing Enter .
Type p and then find and select println(String x).
Type s , press Ctrl+J and select sout

Q

How to add previously existing project from my folder?

A

By using this option use can import
"import project" from the launcher

Q

How do I run Intellij?

A

Press Shift+Alt+F10 , select the desired run configuration from the pop-up menu, and press Enter . And then you can run.

Q

Is Java is necessary for intelliJ?

A

JRE 1.8 is bundled with the IntelliJ IDEA distribution. You do not need to install Java on your computer to run IntelliJ IDEA. A standalone JDK is required for Java development.

Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help legeek ?
Installation of the call center module

hello

I wish to install a call center in virtual with issabel, I downloaded the latest version of it , but I don' t arrive to install the call center module in issabel. please help me

thanks!

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.