Failed to start './qemu/windows-x86_64/qemu-system-i386.exe': no ​​such file or directory

I followed everything in this link http://ionicframework.com/docs/guide/installation.html and I installed Genymotion in Android Studio ... But I'm afraid with the error shown below ... Whenever I run ionic run android or ionic emulate android :

 Running command: "C:\Program Files\nodejs\node.exe" C:\Users\t\todo\hooks\after_prepare\010_add_platform_class.js C:/Users/t/todo add to body class: platform-android Running command: cmd "/s /c "C:\Users\t\todo\platforms\android\cordova\run.bat"" ANDROID_HOME=C:\Users\t\AppData\Local\Android\sdk JAVA_HOME=C:\Program Files\Java\jdk1.7.0_79\ WARNING : No target specified, deploying to emulator WARNING : no emulator specified, defaulting to Nexus_5_API_23_x86 Waiting for emulator... Could not launch './qemu/windows-x86_64/qemu-system-i386.exe': No such file or directory 

I really don't understand how to fix this part ... any suggestion or help would be greatly appreciated ...

+14
android windows cordova ionic
source share
7 answers

I am using Android Studio 2.3 with the Build-Tools 25.0.2 SDK and my problem was resolved by installing the "Android Emulator":

+24
source share

Win 10: I could solve this problem in two stages 1- Enable VT-x in Boise. 2- Enable it in Windows: Control Panel> Programs> Add Feature> VT-x

+2
source share

I just installed the "Intel x86 Emulator Accelerator (HAXM Installer)" in Android Studio

Tools> Android SDK Manager> SDK Tools

In the picture you can see more information

+2
source share

I have the same problem with you.

After I downgrade the Android SDK, you will get from 25 rc1 to 24.4.1. The error has disappeared.

+1
source share

The Android emulator.exe path has been changed to the / sdk / emulator folder on new sdk tools. The ion emulator must be linked to the older emulator.exe path, so you must modify the associated configuration file with the new path.

I cannot indicate which ionic configuration file is associated with the Android emulator because I have never used ionic. But if you can change the path of emulator.exe with a newer one, I am sure that the problem will not disappear.

+1
source share

This is also qemu-system-i386.exe: failed to initialize HAX: Invalid argument qemu-system-i386.exe: failed to initialize HAX: Invalid argument .

I checked the Android emulator, but not the Intel x86 Intel Accelerator (HAXM installer). When I also checked this option, HAX was initialized correctly. The error is gone.

+1
source share

Try adding an emulator to your path.

 export PATH="$ANDROID_HOME/emulator:$PATH" 
0
source share

All Articles