Error starting android studio .. environment variable does not indicate a valid JVM installation

The JAVA_HOME environment variable (C: \ Program Files \ Java \ jdk1.8.0_05 \ bin) does not indicate a valid JVM installation.

I get this error when I launch android studio. And I also tried similar questions in stack overflow, but nothing worked. i am using 32 bit

I set the variables as:

variable name: JAVA_HOME Variable value: C: \ Program Files \ Java \ jdk1.8.0_05 \ bin

+7
android studio
source share
2 answers

Change JAVA_HOME to C: \ Program Files \ Java \ jdk1.8.0_05

+11
source share

Direct the JAVA_HOME variable to C: \ Program Files \ Java \ jdk1.8.0_xx \; where "xx" is the update number (make sure that it matches the name of your actual system directory).

Note: Remember to specify the JAVA_HOME path variable in system variables, not user variables. If the path variable is in User, Android Studio will not find the path.

0
source share

All Articles