Command ‘adb‘ not found, but can be installed with: sudo apt install adb

error message

Command ‘adb’ not found, but can be installed with:

sudo apt install adb

Solution

Because our ubuntu system does not have adb installed, so the command cannot be found, enter the installation command:

sudo apt-get install adb

insert image description here
After the installation is successful, you can use the adb command.

Guess you like

Origin blog.csdn.net/qq_42257666/article/details/125573437