使用 adb: command not found 重启 Genymotion 模拟器
Restart Genymotion emulator with adb: command not found
我已经安装了 Genymotion,我想用 adb reboot
重新启动它。然而,当我尝试......好吧,看看:
MacBook-Pro:tools Dean$ pwd
/Applications/Genymotion.app/Contents/MacOS/tools
MacBook-Pro:tools Dean$ ls -la
total 9672
drwxr-xr-x@ 5 Dean admin 170 Jun 13 11:36 .
drwxr-xr-x@ 9 Dean admin 306 Jun 13 11:36 ..
-rwxr-xr-x@ 1 Dean admin 1595024 Jun 13 11:36 aapt
-rwxr-xr-x@ 1 Dean admin 2804800 Jun 13 11:36 adb
-rwxr-xr-x@ 1 Dean admin 544896 Jun 13 11:36 glewinfo
MacBook-Pro:tools Dean$ adb reboot
-bash: adb: command not found
有人知道为什么会这样吗?谢谢!
可能 adb 二进制文件不在您的 PATH 中。 PATH 环境变量是以冒号分隔的目录列表,当您输入命令时,您的 shell 会搜索这些目录。 Bash 在 PATH 中查找 adb 而不是您当前的目录。所以试试下面的命令
./adb reboot
我已经安装了 Genymotion,我想用 adb reboot
重新启动它。然而,当我尝试......好吧,看看:
MacBook-Pro:tools Dean$ pwd
/Applications/Genymotion.app/Contents/MacOS/tools
MacBook-Pro:tools Dean$ ls -la
total 9672
drwxr-xr-x@ 5 Dean admin 170 Jun 13 11:36 .
drwxr-xr-x@ 9 Dean admin 306 Jun 13 11:36 ..
-rwxr-xr-x@ 1 Dean admin 1595024 Jun 13 11:36 aapt
-rwxr-xr-x@ 1 Dean admin 2804800 Jun 13 11:36 adb
-rwxr-xr-x@ 1 Dean admin 544896 Jun 13 11:36 glewinfo
MacBook-Pro:tools Dean$ adb reboot
-bash: adb: command not found
有人知道为什么会这样吗?谢谢!
可能 adb 二进制文件不在您的 PATH 中。 PATH 环境变量是以冒号分隔的目录列表,当您输入命令时,您的 shell 会搜索这些目录。 Bash 在 PATH 中查找 adb 而不是您当前的目录。所以试试下面的命令
./adb reboot