I am a new user of Linux, it has been recommended to me by my friend.
He told me to install software called IntelliJ Idea IDE.
Well I have been following the tutorial. But now when I try to open "idea.sh", an error message pops-up:
'tools.jar' is not in IDEA classpath.
Please ensure JAVA_HOME points to JDK rather than JRE.
Please remember that I'm new to Ubuntu and I'm planning for a nice long stay once I get myself into it :)
Also I do not know if I am running a correct Java6 JDK.
When I do java -version
, this is what I get:
java version "1.6.0_23"
OpenJDK Runtime Environment (IcedTea6 1.11pre) (6b23~pre10-0ubuntu5)
OpenJDK 64-Bit Server VM (build 20.0-b11, mixed mode)
Thank You for reading this and I hope I will get a nice response.
Be sure you have a JDK installed on your system.
sudo apt-get install openjdk-7-jdk
If that does not solve your problem, you must tell your system to use that JDK instead of the current JRE. To do so, you choose which JDK/JRE you use by default on your system by executing the following command in terminal.
sudo update-alternatives --config java
This command will give you a list of alternative java options, which you will then be able select a JDK instead of JRE.
On my Linux Mint environment I've encountered the same problem. I tried to install Oracle JDK8 using
but the problem remained because installer didn't change environment variables. Then I tried the following
and it solved the problem
Try this command
and run idea.sh again.
Mind you, this only works inside the terminal where you run the command. You will have to set the variable inside .bashrc file. This will enable it on every terminal you open.
StackOverFlow
Try this:
You need JDK.
The answers above are correct but I have one thing to add. Actually the environment variables for Shell Session and Desktop GUI Session are different (check this). If the error happens when you launch IntelliJ with Desktop Entry(the Launcher), you might don't have JAVA_HOME in your GUI Environment.
So the easiest solution is to add JAVA_HOME in the Exec line of the desktop entry like this:
I've solved this problem with these commands
and
The solution of exporting the JAVA_HOME variable doesn't work for me in Ubuntu. I solved it adding the bin directory to the PATH variable.
I downloaded the JDK from the Oracle website, and I placed it in this directory:
/home/alejandro/software/JAVA-descarga/jdk1.8.0_25
Then you have to add that route to the PATH variable:
Then run the idea.sh file in the same terminal and it will start well.
edit the file
android-studio/bin/studio.sh
like the mark content(
JAVA_HOME
line)Even though on UI popup message it says
on command line it shows
and this was exactly the issue for me. Setting
JAVA_HOME
did not work but had to setJDK_HOME
to make it work.