Explain how to install up-to-date meson

On Ubuntu 16.04, meson is 0.29, while scrcpy requires >= 0.37.

Explain how to install a newer version from pip3.
This commit is contained in:
Romain Vimont 2018-11-11 00:08:41 +01:00
parent 9160d465ec
commit b1d2c2c640

View file

@ -51,6 +51,15 @@ sudo apt install make gcc pkg-config meson \
sudo apt install openjdk-8-jdk
```
On old versions (like Ubuntu 16.04), `meson` is too old. In that case, install
it from `pip3`:
```bash
sudo apt install python3-pip
pip3 install meson
```
#### Fedora
```bash