Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android studio is not working on windows 7 [duplicate]

I downloaded android-studio-bundle-130.677228-windows and installed it on my computer. But when I tried to launch the android studio, nothing happening there...Its not launching, no errors. I also tried to run it as administrator, but not working. What is the actual problem there? Is anyone experiencing the same problem?

like image 697
Alex Chengalan Avatar asked May 16 '13 07:05

Alex Chengalan


2 Answers

you have to set up the environment variables in windows 7 , for instance:

JDK_HOME -> c:\Program Files\Java\jdk1.7.0_21\

you may go How to set up JDK_HOME Environment Variable In case, you do not know how to set this variable.

Hope this will Help.

like image 82
Bhavesh Patadiya Avatar answered Sep 27 '22 18:09

Bhavesh Patadiya


Ok, simple as this:

  1. Find you JDK folder path (usually in this format: C:\Program Files\Java\jdk1.7.0) and copy it.
  2. On windows, click on start --> type "Path" and open Environment Variables window.
  3. In System variables section --> click New
  4. Variable name: JDK_HOME
  5. Variable value: JDK Folder path from part 1.

Enjoy!

like image 20
David Avatar answered Sep 27 '22 18:09

David