Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

adb: command not found ( from within the platform-tools directory ) on Mac OS X Yosemite

Ultimately I'm trying to get the device id for my note 5.

I've installed Android Studio along with the Platform-Tools 23.1

When I use terminal to go into the platform-tools folder and type adb I get "command not found"

Any ideas?

Thanks

enter image description here

like image 481
rad79 Avatar asked Dec 25 '15 22:12

rad79


1 Answers

Since "platform-tools" is probably not part of the system path, you should try running: "./adb" instead of "adb" from the platform-tools location. Or use the full path to it.

Using "." would indicate that you are trying to launch adb from the current directory

like image 56
Nicolae Natea Avatar answered Oct 23 '22 19:10

Nicolae Natea