Android Studio not starting

Android Studio does not start on Windows 8. I download it, install it, but when I click on the icon to start it, nothing happens. I am trying to run with administrator. I am trying to install compatibility with Windows 7.

+18
android android-studio
May 16 '13 at 6:43
source share
2 answers

For debugging, it is very useful to run C:\Program Files (x86)\Android\android-studio\bin\studio.bat .

This indicates what is wrong. In my case, I had to update the JDK_HOME environment variable to indicate a fix installation.

From the android documentation (this part was published after I wrote my answer):

Known issue: On some Windows systems, the script launcher cannot find where Java is installed. If you encounter this problem, you need to set an environment variable indicating the correct location.

Choose Start> Computer> System Properties> Advanced System Properties . Then go to the Advanced tab > Environment Variables and add a new JAVA_HOME system variable that points to your JDK folder, for example C:\Program Files\Java\jdk1.7.0_21 .

+25
May 16 '13 at 6:54
source share

The launcher does not find your JDK setup. Make sure you set one of the following environment variables ANDROID_STUDIO_JDK : ANDROID_STUDIO_JDK , JDK_HOME , JAVA_HOME

+2
May 16 '13 at 6:54
source share



All Articles