Two days ago, I have installed Ubuntu 16.04 and I'm trying to install intellij IDEA ide for java coding, it is saying "no such directory found".
2 Answers
Here is an easy way to install IntelliJ IDEA Community edition:
sudo apt install ubuntu-make
umake ide idea
To remove IntelliJ IDEA Community edition installed via Ubuntu Make, use this command:
umake -r ide idea

- 319
- 1
- 15
-
i have tried the above commands it is saying E: Unable to locate package ubuntu-umake E: Unable to locate package umake E: Unable to locate package ide E: Unable to locate package idea – srinath sri Feb 10 '17 at 14:44
-
-
it is saying Reading package lists... Done Building dependency tree
Reading state information... Done E: Unable to locate package ide E: Unable to locate package idea – srinath sri Feb 10 '17 at 15:05 -
you get that error when running the command umake ide idea? Note you first have to run sudo apt install ubuntu-make. After that is done you run umake ide idea – D-unit Feb 10 '17 at 15:21
-
thank you sir.. i've installed succesfully and it is really easy installation. – srinath sri Feb 10 '17 at 16:57
-
Great! Please mark the post as answered if it helped you solve the problem – D-unit Feb 12 '17 at 10:49
You're welcome, here you go, firstly Install required Oracle JDK for Ubuntu, then please follow the following steps:
i-Download Latest IntelliJ IDEA 2016 for Linux: Here IntelliJ IDEA 2016 tar.gz for Linux.
ii- Either double-Click and Extract IntelliJ Archive into /tmp Or from Shell with a Command-line like: tar xvzf ~/Downloads/idea*.tar.gz -C /tmp/
iii- sudo su
iv- Set up the root superUser as holder: chown -R root:root /tmp/idea*
v-Switch the IntelliJ IDEA contents: mv /tmp/idea* /opt/idea
vi- Making a Symlink into the working Path: ln -s /opt/idea/bin/idea.sh /usr/local/bin/idea.sh
vii- End the SuperUser session: exit
viii- Launch IDEA from terminal: idea.sh
Finally perform Initial Customization, enjoy.

- 51
tar.gz
file and run the.sh
in thebin
directory there? – George Udosen Feb 09 '17 at 13:36