Android Studio fails to launch on Windows 8 64bit

The installation works fine, the JDK was also found without problems. After installation, the program does not start. Double-clicking on the icon causes nothing to happen. Starting with the administrator or installing "just for me" or for all users does not matter. I have no answers. Perhaps this is a common problem?

+3
android windows android-studio
May 16 '13 at 20:08
source share
5 answers

After downloading and installing Java SE Development Kit 7, "jdk-7u21-windows-x64.exe" from the Oracle site then adds the JAVA_HOME (value = c:\program Files\Java\jdk1.7.0_21) environment variables JAVA_HOME (value = c:\program Files\Java\jdk1.7.0_21) . It works fine with me on Windows 8.

+9
May 16 '13 at 23:08
source share

the solution is so simple in: Adding the JDK_HOME system variable

with the value c:\Program Files\Java\jdk1.7.0_21\ worked for me.

The latest version of Java can be downloaded here .

+4
May 16 '13 at 10:09
source share

Switch to

control panel → System → Preset settings → Environment Variable

Then in the system variable, click new, enter the variable name JDK_HOME and the value of the variable C:\programfiles\java\jdk (this path may differ on different computers.)

Then restart android studio.

+3
May 17 '13 at 10:57
source share

I had this on Windows 7 64 bit. I needed to manually set the JAVA_HOME environment variable. Try this and try to run it from the shell so that you can see the exact error.

0
May 16 '13 at 20:10
source share

There exists an existing thread that has a bit more detailed information about this. Today, you probably have the same version of Java as the answer, so you can simply copy and paste and be on the go as soon as possible.

Android Studio does not start after installation

0
May 16 '13 at 20:26
source share



All Articles