2

我正在使用 Ubuntu12.04,我看到下面的错误,在我看来,python 试图以某种方式调用 adb 命令,但失败了。

/bin/sh: 1: adb: not found
Traceback (most recent call last):
 `File "./test.py", line 1395, in <module>
    main()
  File "./test.py", line 1218, in main
    Device.wait_for_device(TIMEOUT, None, a.getport())
  File "./test.py", line 433, in wait_for_device
    if (len(a) == 1 and get_attached_devices()):
  File "./test.py", line 126, in get_attached_devices
    lines = subprocess.check_output(adb_rel_path + 'adb devices', shell =True).split('\n')
  File "/usr/lib/python2.7/subprocess.py", line 544, in check_output
    raise CalledProcessError(retcode, cmd, output=output)
   subprocess.CalledProcessError: Command 'adb devices' returned non-zero exit status 127

我按照说明安装了pyadb: https ://pypi.python.org/pypi/pyadb/0.1.1

但它仍然不起作用。我现在一点头绪都没有。有谁知道我是否缺少任何软件包或程序?

4

2 回答 2

5

退出代码 127 表示“找不到命令”,您确定可以从标准终端执行 abd 吗?

于 2013-10-11T22:29:47.393 回答
0

我有同样的例外,而我确实尝试通过 buidout 安装两个版本的 python。所以我必须安装 build-essential,这样 buildout 才能执行 make 命令。

sudo apt-get install build-essential
于 2018-03-16T11:43:45.097 回答