Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I get 'Command Not Found' when I try to run Android Emulator on Mac OS X

When I use the Mac OS X Terminal to navigate to the folder with my Android Emulator and type emulator, I get:

command not found

Here's what happens:

$ emulator -bash: emulator: command not found 

How do I get it to work?

like image 513
Kebman Avatar asked Apr 22 '12 15:04

Kebman


People also ask

Why Android emulator is not opening?

If the Android Emulator does not start properly, this problem is often caused by problems with HAXM. HAXM issues are often the result of conflicts with other virtualization technologies, incorrect settings, or an out-of-date HAXM driver. Try reinstalling the HAXM driver, using the steps detailed in Installing HAXM.


1 Answers

The current directory is not normally included in your $PATH on a *nix operating system like OS X; to execute a program in the current directory, precede it with the path to the current directory (.):

$ ./emulator 
like image 75
eggyal Avatar answered Sep 22 '22 16:09

eggyal