You need to enable JavaScript to run this app.
最新活动
大模型
产品
解决方案
定价
生态与合作
支持与服务
开发者
了解我们

Android Studio创建虚拟设备时出现“No system image are available, Are you connected to the internet?”提示的解决方法

Fixing "No system images are available, Are you connected to the internet?" in Android Studio

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) or Android 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 Apply and 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 Apply and 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-Tools and Android SDK Platform-Tools
  • Click Apply to reinstall or repair these components
  • After that, go to File > Sync Project with Gradle Files to 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-images folder:
    • Windows: C:\Users\[Your Username]\AppData\Local\Android\Sdk\system-images
    • Mac: ~/Library/Android/sdk/system-images
    • Linux: ~/Android/Sdk/system-images
  • 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) or Android 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

火山引擎 最新活动