adb command not found in linux environment

前端 未结 21 1406
有刺的猬
有刺的猬 2020-12-07 19:07

While implementing the BluetoothChat application .apk inside G1 device, it always pops up a message:

$adb install -r /home/parveen/workspace/BluetoothChat/bi         


        
21条回答
  •  甜味超标
    2020-12-07 19:14

    I had the same issue on my fresh Ubuntu 64 bit installation, and the path was set up correctly.

    Thus, which adb would resolve correctly, but trying to run it would fail with adb: command not found.

    The very helpful guys at #android-dev pointed me to the solution, namely that the 32 bit libraries hadn't been installed. On my previous computers, this had probably been pulled in as a dependency for another package.

    On Ubuntu (probably other Debians as well), running [sudo] apt-get install ia32-libs

提交回复
热议问题