Home > Article > Software Tutorial > how to install scrcpy linux
This article provides instructions on how to install scrcpy, a tool that allows you to control an Android device from your computer. The main issue discussed is the installation process and its dependencies.
How do I install scrcpy on Linux?
To install scrcpy on Linux, you can use the following steps:
Install the dependencies
For Ubuntu/Debian:
<code>sudo apt update sudo apt install adb libusb-dev libusb-1.0-0 libusb-1.0-0-dev</code>
For Fedora/Red Hat:
<code>sudo dnf update sudo dnf install adb libusb libusb-devel</code>
Download and build scrcpy
<code>git clone https://github.com/Genymobile/scrcpy.git cd scrcpy ./bootstrap make</code>
Yes, scrcpy can be used on any Linux distribution with a compatible kernel. However, some distributions may require additional dependencies to be installed, such as libusb and libusb-dev.
The above is the detailed content of how to install scrcpy linux. For more information, please follow other related articles on the PHP Chinese website!