Comprehensive Guide to Installing Android Studio on Windows

Comprehensive Guide to Installing Android Studio on Windows

【Software Name】: Android Studio

【Installation Environment】: Windows

Download Link】: Click the bottom “Read the original text”

Download Link】: https://www.sssam.com/6220.html

Software Introduction

Comprehensive Guide to Installing Android Studio on Windows

Android Studio is an Android integrated development tool launched by Google, based on IntelliJ IDEA. Similar to Eclipse ADT, Android Studio provides integrated Android development tools for development and debugging.

Installation Steps

Comprehensive Guide to Installing Android Studio on Windows

1: Installing JDK and Configuring Environment Variables
1. Choose to install JDK based on your computer system type. The test computer is a 64-bit system, so double-click “jdk-8u131 for 64-bit system.exe”.
Comprehensive Guide to Installing Android Studio on Windows2. Click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
3. Click “Change” to select the installation path. I installed it on D drive, so just change the letter C to D, then copy the changed installation path (use shortcut Ctrl+C when copying), and you can save the copied installation path to a notepad, which will be needed later when configuring environment variables.The copied installation path is D:\Program Files\Java\jdk1.8.0_131\
Comprehensive Guide to Installing Android Studio on Windows
4. It is recommended to create a new folder “jre1.8” under D:\Program Files\Java (because I previously chose to install it on D drive). If you installed it on another drive, you can create a new folder “jre1.8” under the Program Files\Java folder on that drive.Then click “Change” to select the newly created jre1.8 folder, and click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
5. Click “Close”.
Comprehensive Guide to Installing Android Studio on Windows
6. After installing JDK, configure the environment variables.Right-click “Computer”, click “Properties”.
Comprehensive Guide to Installing Android Studio on Windows
7. Click “Advanced System Settings”.
Comprehensive Guide to Installing Android Studio on Windows
8. Click “Advanced”, then click “Environment Variables”.
Comprehensive Guide to Installing Android Studio on Windows
9. Click “New”, enter the variable name “JAVA_HOME”, and enter the variable value as the installation path copied in step 3.D:\Program Files\Java\jdk1.8.0_131\
Comprehensive Guide to Installing Android Studio on Windows
10. Click “New”, variable name is “CLASSPATH”
Variable value is .;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar
Comprehensive Guide to Installing Android Studio on Windows
11. Find “Path” in the system variables and click “Edit”.
Comprehensive Guide to Installing Android Studio on Windows
12. Then click “Edit Text”, and click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
13. Variable value is “%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;” and click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
14. Click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
15. Click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
16. Check if JDK is installed successfully.Press the “WIN key + R key” on the keyboard at the same time.Enter “cmd”, click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
17. Enter the command:java -version (there is a space between java and -version), java, javac these three commands (try all, as long as one fails, it means JDK environment configuration failed), if all show normal, it means configuration successful!
When entering java -version, the successful diagram is as follows:
Comprehensive Guide to Installing Android Studio on Windows
When entering java, the successful diagram is as follows:
Comprehensive Guide to Installing Android Studio on Windows
When entering javac, the successful diagram is as follows:
Comprehensive Guide to Installing Android Studio on Windows
2: Unzip the SDK file.
18. Place the unzipped sdk file in the root directory of D drive or another drive. Note that the unzipped path should not contain Chinese characters, and the disk space should be more than 20G. Create a folder sdk in D drive or another drive.
Comprehensive Guide to Installing Android Studio on Windows
19. Right-click the sdk file and select extract to (F)…
Comprehensive Guide to Installing Android Studio on Windows
20. Choose the unzipped path to the newly created SDK folder. I chose D:\SDK (copy this path for later modification of environment variables). Wait for the extraction to complete before proceeding to the next step.
Comprehensive Guide to Installing Android Studio on Windows
21. Right-click “Computer”, click “Properties”.
Comprehensive Guide to Installing Android Studio on Windows
22. Click “Advanced System Settings”.
Comprehensive Guide to Installing Android Studio on Windows
23. Click “Advanced”, then click “Environment Variables”.
Comprehensive Guide to Installing Android Studio on Windows
24. Click “New”, variable name is ANDROID_SDK_HOME, variable value is the installation path of the unzipped file from step 22.D:\SDK, then click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
25. Click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
26. Click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
3: Installing Android Studio.
27. Double-click to open “android studio”.
Comprehensive Guide to Installing Android Studio on Windows
28. Click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
29. Do not check “Android SDK”, click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
30. Click “I Agree”.
Comprehensive Guide to Installing Android Studio on Windows
31. Click “I Agree”.
Comprehensive Guide to Installing Android Studio on Windows
32. Click “Browse” to select the previously created SDK folder on D drive or another drive, then click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
33. Click “Browse” to change the installation location of Android Studio. You can create a folder on D drive or another drive, then click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
34. Click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
35. Click “Install” to start the installation. During the installation, if there are any prompts, click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
Comprehensive Guide to Installing Android Studio on Windows
36. Click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
37. Click “Finish”.
Comprehensive Guide to Installing Android Studio on Windows
38. After opening the software, select the second option, then click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
39. Click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
40. Choose “Custom” and then click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
41. Click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
42. Click “Next”.
Comprehensive Guide to Installing Android Studio on Windows
43. Click “Finish”.
Comprehensive Guide to Installing Android Studio on Windows
44. The progress is relatively slow, wait a little longer.
Comprehensive Guide to Installing Android Studio on Windows
45. Click “Finish”.
Comprehensive Guide to Installing Android Studio on Windows
46. If there is a prompt in the upper right corner, click close.
Comprehensive Guide to Installing Android Studio on Windows
47. Installation completed.
Comprehensive Guide to Installing Android Studio on Windows
4: SDK Environment Configuration for Android Studio
48. Click “configure” in the list.
Comprehensive Guide to Installing Android Studio on Windows
49. Click “Project Defaults”.
Comprehensive Guide to Installing Android Studio on Windows
50. Click “Project Structure”.
Comprehensive Guide to Installing Android Studio on Windows
51. Friendly reminder:If the path is already set, there is no need to set it again.In the input box of Android sdk location, enter the sdk path, which is the path of the unzipped sdk D:\sdk. In the input box of JDK location, enter the JDK installation path.D:\Program Files\Java\jdk1.8.0_131, and finally click “OK”.
Comprehensive Guide to Installing Android Studio on Windows
52. Unzip the test project files.
Comprehensive Guide to Installing Android Studio on Windows
53. Click “Open an existing Android Studio project”.
Comprehensive Guide to Installing Android Studio on Windows
54. Select the unzipped test file “Oandroid-test”.
Comprehensive Guide to Installing Android Studio on Windows
55. Click “close”.
Comprehensive Guide to Installing Android Studio on Windows
56. Installation completed.
Comprehensive Guide to Installing Android Studio on Windows

Comprehensive Guide to Installing Android Studio on Windows

Click the bottom “Read the original text” to get the software

Leave a Comment