Comprehensive Guide to Installing Android Studio

Download Link for Android Studio:

Link: pan.baidu.com/s/1VnJS7JFSOZfQpC1GmTyJeA

Password: 7gvp

If you encounter issues during installation, please consult QQ: 236346343

Software Introduction:

Android Studio is a new Android development environment based on IntelliJ IDEA, similar to the Eclipse ADT plugin. Android Studio provides integrated Android development tools for development and debugging.

Installation Method:

1. Install JDK and configure environment variables.

1. Choose the JDK installation based on your computer system type. The test computer is a 64-bit system, so double-click jdk-8u131 suitable for 64-bit systems.exe.

Comprehensive Guide to Installing Android Studio

2. Click Next.

Comprehensive Guide to Installing Android Studio

3. Click Change to select the installation path. I will install it to drive D, so I just change the letter C to D, and then copy the changed installation path (use Ctrl+C to copy). You can save the copied installation path in Notepad, as it will be needed later for environment variable configuration. The copied installation path is D:\Program Files\Java\jdk1.8.0_131\

Comprehensive Guide to Installing Android Studio

4. Wait for the installation.

Comprehensive Guide to Installing Android Studio

5. It is recommended to create a folder named jre1.8 under D:\Program Files\Java (since I previously chose to install it to drive D). If you installed it on another drive, you can create a folder named 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

Comprehensive Guide to Installing Android Studio

Comprehensive Guide to Installing Android Studio

6. Wait for the installation.

Comprehensive Guide to Installing Android Studio

7. Click Close.

Comprehensive Guide to Installing Android Studio

8. After installing JDK, configure the environment variables. Right-click on “Computer”. Click “Properties”.

Comprehensive Guide to Installing Android Studio

9. Click “Advanced system settings”.

Comprehensive Guide to Installing Android Studio

10. Click “Advanced”, then click “Environment Variables”.

Comprehensive Guide to Installing Android Studio

11. Click New. Enter JAVA_HOME as the variable name, and the installation path copied from step 3 as the variable value. D:\Program Files\Java\jdk1.8.0_131\

Comprehensive Guide to Installing Android Studio

Comprehensive Guide to Installing Android Studio

12. Click New again. Enter CLASSPATH as the variable name.

Enter the variable value.;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar

Comprehensive Guide to Installing Android Studio

13. Find Path in system variables, and click Edit.

Enter the variable value %JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;

Comprehensive Guide to Installing Android Studio

Finally, remember to click OK

Comprehensive Guide to Installing Android Studio

14. Check if JDK is installed successfully. Press the “WIN key + R key” on the keyboard. Enter “cmd”. Click OK.

Comprehensive Guide to Installing Android Studio

Comprehensive Guide to Installing Android Studio

15. Enter the command: java -version (there is a space between java and -version), and try the commands java, javac (if any one fails, it indicates JDK environment configuration failed). If all show normal, it means configuration is successful!

When entering java -version, the success image is as follows:

Comprehensive Guide to Installing Android Studio

When entering java, the success image is as follows:

Comprehensive Guide to Installing Android Studio

When entering javac, the success image is as follows:

Comprehensive Guide to Installing Android Studio

2: Unzip the SDK files.

Place the unzipped SDK files in the root directory of drive D or another drive. Note that the unzipped path should not contain Chinese characters, and disk space should be more than 20G.

1. Create a new folder named sdk in drive D or another drive.

Comprehensive Guide to Installing Android Studio

2. Right-click the sdk file, select Unzip to (F)…

Comprehensive Guide to Installing Android Studio

3. Choose the unzipping path as the sdk folder created earlier, I choose D:\sdk (copy this path for later modification of environment variables), wait for the unzipping to finish before proceeding to the next step.

Comprehensive Guide to Installing Android Studio

4. Right-click on “Computer”. Click “Properties”.

Comprehensive Guide to Installing Android Studio

5. Click “Advanced system settings”.

Comprehensive Guide to Installing Android Studio

6. Click “Advanced”, then click “Environment Variables”.

Comprehensive Guide to Installing Android Studio

7. Click New. Enter ANDROID_SDK_HOME as the variable name, and the path from step 3 as the variable value. D:\sdk

Comprehensive Guide to Installing Android Studio

Comprehensive Guide to Installing Android Studio

Comprehensive Guide to Installing Android Studio

3: Installing Android Studio.

1. Double-click to open the Android Studio installation package.

Comprehensive Guide to Installing Android Studio

2. Click Next

Comprehensive Guide to Installing Android Studio3. Do not check Android SDK, click Next

Comprehensive Guide to Installing Android Studio

4. Click I Agree

Comprehensive Guide to Installing Android Studio5. Click Browse to select the sdk folder created earlier in drive D or another drive.

Comprehensive Guide to Installing Android Studio

6. Click Browse to change the installation location of Android Studio, you can create a folder named AndroidStudio in drive D or another drive.

Comprehensive Guide to Installing Android Studio

7. Click Next

Comprehensive Guide to Installing Android Studio8. Click Install to start the installation.

Comprehensive Guide to Installing Android Studio

9. The installation is in progress, if you see the following prompt, click OK, and after the installation is complete, click Next.

Comprehensive Guide to Installing Android Studio

Comprehensive Guide to Installing Android Studio

Comprehensive Guide to Installing Android Studio

10. Click Finish

Comprehensive Guide to Installing Android Studio

11. After opening the software, select the second option and then click OK.

Comprehensive Guide to Installing Android Studio

12. Click Next.

Comprehensive Guide to Installing Android Studio

13. Choose Custom and then click Next.

Comprehensive Guide to Installing Android Studio

14. Click Next.

Comprehensive Guide to Installing Android Studio

15. Click Next.

Comprehensive Guide to Installing Android Studio

16. Click Finish.

Comprehensive Guide to Installing Android Studio

17. The progress is relatively slow, please wait a little longer.

Comprehensive Guide to Installing Android Studio

18. Click Finish.

Comprehensive Guide to Installing Android Studio

19. If there is a prompt in the upper right corner, just click close.

Comprehensive Guide to Installing Android Studio

20. Find the Android Studio software icon in the Start menu under all programs, then right-click to send a shortcut to the desktop.

Comprehensive Guide to Installing Android Studio

21. Installation completed.

Comprehensive Guide to Installing Android Studio

4. Configuring the SDK environment for Android Studio

1. After starting the Android Studio software, click configure in the list.

Comprehensive Guide to Installing Android Studio

2. Click Project Defaults

Comprehensive Guide to Installing Android Studio

3. Click Project Structure

Comprehensive Guide to Installing Android Studio

4. Reminder: If the path is already set, there is no need to reset it. In the Android sdk location input box, enter the sdk path, which is the path where the sdk was previously unzipped D:\sdk, and in the JDK location input box, enter the JDK installation path. D:\Program Files\Java\jdk1.8.0_131. Finally, click OK.

Comprehensive Guide to Installing Android Studio

5. Open the project test file for testing.

1. Unzip the test project file.

Comprehensive Guide to Installing Android Studio

2. Click Open an existing Android Studio project.

Comprehensive Guide to Installing Android Studio

3. Select the unzipped test file Oandroid-test

Comprehensive Guide to Installing Android Studio

4. Click close.

Comprehensive Guide to Installing Android Studio

5. In the menu bar, click Run, then click Run app

Comprehensive Guide to Installing Android Studio

6. Click OK

Comprehensive Guide to Installing Android Studio

7. You can see the program starting to run.

Comprehensive Guide to Installing Android Studio

8. Installation completed.

Comprehensive Guide to Installing Android Studio

Comprehensive Guide to Installing Android Studio

Leave a Comment