Android Studio创建虚拟设备时出现“No system image are available, Are you connected to the internet?”提示的解决方法
Hey there! I remember hitting this exact snag when I was new to Android Studio—total buzzkill, but it’s definitely solvable. Let’s break down the fixes that worked for me and other developers:
1. Double-check your network connection & proxy settings
First things first: confirm your internet is working (try opening a few websites). If you’re on a work/school network with a proxy, Android Studio might be blocked from accessing the SDK servers:
- Go to
File > Settings(Windows/Linux) orAndroid Studio > Settings(Mac) - Navigate to
Appearance & Behavior > System Settings > HTTP Proxy - Choose
Auto-detect proxy settings(most cases) or manually enter your proxy details if you know them - Click
Applyand restart Android Studio
2. Download system images via SDK Manager
Chances are you just haven’t installed the system images yet. Here’s how to get them:
- Open the SDK Manager: go to
Tools > SDK Manager - Switch to the SDK Platforms tab
- Check the box next to the Android version you want to use (e.g., Android 14)
- Expand the version entry, make sure the System Image for your target architecture (like x86_64 for most emulators) is checked
- Click
Applyand let Android Studio download the image—don’t cancel mid-download!
3. Repair corrupted SDK components
If the download got interrupted earlier, some SDK files might be corrupted:
- Go back to the SDK Manager, switch to the SDK Tools tab
- Check
Android SDK Build-ToolsandAndroid SDK Platform-Tools - Click
Applyto reinstall or repair these components - After that, go to
File > Sync Project with Gradle Filesto make sure everything’s synced up
4. Manually install system images (if Studio can’t download them)
If network issues persist, you can grab the image directly:
- Find the system image zip for your desired Android version and architecture (look for it in the official Android SDK archive)
- Extract the zip file into your Android SDK’s
system-imagesfolder:- Windows:
C:\Users\[Your Username]\AppData\Local\Android\Sdk\system-images - Mac:
~/Library/Android/sdk/system-images - Linux:
~/Android/Sdk/system-images
- Windows:
- Restart Android Studio, then try creating the virtual device again
5. Update Android Studio to the latest version
Older versions of Android Studio might have compatibility issues with newer system images. To update:
- Go to
Help > Check for Updates(Windows/Linux) orAndroid Studio > Check for Updates(Mac) - Install any available updates and restart Studio
Hope one of these fixes gets you up and running with your emulator! 🚀
内容的提问来源于stack exchange,提问作者Mohammad Altayeb




