For meson, python3-wheel needs to be installed

This commit is contained in:
Sukchan Lee 2019-11-04 16:55:19 +09:00
parent aa7d7f3b7d
commit 14427de551
3 changed files with 3 additions and 1 deletions

View File

@ -9,6 +9,7 @@ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
python3-pip \ python3-pip \
python3-setuptools \ python3-setuptools \
python3-wheel \
ninja-build \ ninja-build \
build-essential \ build-essential \
flex \ flex \

View File

@ -9,6 +9,7 @@ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
python3-pip \ python3-pip \
python3-setuptools \ python3-setuptools \
python3-wheel \
ninja-build \ ninja-build \
build-essential \ build-essential \
flex \ flex \

View File

@ -39,7 +39,7 @@ $ sudo ip link set ogstun up
Install the depedencies for building the source code. Install the depedencies for building the source code.
```bash ```bash
$ sudo apt install python3-pip python3-setuptools ninja-build build-essential flex bison git libsctp-dev libgnutls28-dev libgcrypt-dev libssl-dev libidn11-dev libmongoc-dev libbson-dev libyaml-dev $ sudo apt install python3-pip python3-setuptools python3-wheel ninja-build build-essential flex bison git libsctp-dev libgnutls28-dev libgcrypt-dev libssl-dev libidn11-dev libmongoc-dev libbson-dev libyaml-dev
``` ```
Install Meson using Python. Install Meson using Python.