2016-07-22 4 views
-1

Genymotion을 설치했으며 으로 다시 시작하려고합니다. 그러나 시도 할 때 .. 글쎄, 그냥 봐 :adb : 명령을 사용하여 Genymotion 에뮬레이터를 다시 시작하십시오.

MacBook-Pro:tools Dean$ pwd 
/Applications/Genymotion.app/Contents/MacOS/tools 
MacBook-Pro:tools Dean$ ls -la 
total 9672 
[email protected] 5 Dean admin  170 Jun 13 11:36 . 
[email protected] 9 Dean admin  306 Jun 13 11:36 .. 
[email protected] 1 Dean admin 1595024 Jun 13 11:36 aapt 
[email protected] 1 Dean admin 2804800 Jun 13 11:36 adb 
[email protected] 1 Dean admin 544896 Jun 13 11:36 glewinfo 
MacBook-Pro:tools Dean$ adb reboot 
-bash: adb: command not found 

왜 이런 일이 일어날 지 알고 있습니까? 감사!

+0

가능한 [Command not found] (http://stackoverflow.com/questions/12555578/command-not-found) –

답변

4

가능성이있는 adb 바이너리가 PATH에 없습니다. PATH 환경 변수는 명령을 입력 할 때 쉘이 검색하는 디렉토리의 콜론으로 구분 된 목록입니다. Bash는 PATH에서 현재 디렉토리가 아닌 adb를 찾습니다. 그래서 아래 명령을 시도하십시오.

./adb reboot 
관련 문제