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:
sudo apt update sudo apt install adb libusb-dev libusb-1.0-0 libusb-1.0-0-devFor Fedora/Red Hat:
sudo dnf update sudo dnf install adb libusb libusb-develDownload and build scrcpy
git clone https://github.com/Genymobile/scrcpy.git cd scrcpy ./bootstrap makeYes, 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!