Error installing Android Studio

1

Well, I'm having the following error installing Android Studio:

I already configured the variable, and already installed the JDK

Even then, the error persists!

    
asked by anonymous 26.05.2016 / 17:38

1 answer

0

Pay attention, download the latest Android Studio IDE, and download your JDK according to your 32bit or 64bit machine, so that your installation works, how do you know if your machine is 32bit or 64bit?

  

Type windows + r and type control and hit enter, now go to   System and there you will know and have the information.

Another important thing:

  • Under System
  • Advanced System Settings
  • System Properties
  • Advanced
  • Environment Variables
  

If you have - Variáveis de usuário - equal - Variáveis do sistema - your installation will always give error, delete the wrong - Variáveis de usuário - and include only those of the tutorial in - Variáveis do sistema - , as seen below.

- Wrong Mode -

-CorrectMode-

Also note JDK duplicates in, Valor da variável , example:

  C: \ Program Files \ Java \ jdk1.8.0_66 \ bin; C: \ Program Files \ Some   Software; C: \ Program Files \ Java \ jdk1.7.0_41 \ bin;

Keep only the most current JDK, do not duplicate entries in Valor da variável , like this:

  C: \ Program Files \ Java \ jdk1.8.0_66 \ bin; C: \ Program Files \ Some Software;

I mean the value of your JDK, it only appears once in each variable!

    
27.05.2016 / 22:38