Android Studio终端:未找到命令

时间:2016-06-02 08:43:58

标签: android variables android-studio terminal path

我想在Android Studio的终端中运行以下命令:

adb kill-server
adb start-server

我遇到了问题:

Command not found. 

我已经读过,不得不以某种方式add the path。 但我不明白应该怎么做......

我在Windows 10 Pro上运行Android Studio 2.2。

3 个答案:

答案 0 :(得分:2)

创建系统变量: enter image description here

将其添加到路径: enter image description here

Adb 位于平台工具下: enter image description here

答案 1 :(得分:0)

如果你仍然得到相同的错误,只需转到你在终端的sdk位置并输入cd platform-tools。然后开始做你想做的事.adb在这里工作。 :)

答案 2 :(得分:0)

如果您使用的是Mac或Linux,则可以尝试这样

export ANDROID_HOME=/Users/$(whoami)/Library/Android/sdk
export PATH=$PATH:$ANDROID_HOME/platform-tools

现在检查

adb status