You can download libfuse from
https://github.com/libfuse/libfuse/releases. To build and install, we
-recommend to use [Meson](http://mesonbuild.com/) and
-[Ninja](https://ninja-build.org). After extracting the libfuse
-tarball, create a (temporary) build directory and run Meson:
+recommend to use [Meson](http://mesonbuild.com/) (version 0.37 or
+newer) and [Ninja](https://ninja-build.org). After extracting the
+libfuse tarball, create a (temporary) build directory and run Meson:
$ md build; cd build
$ meson ..
# (even though this isn't actually Python code)
project('libfuse3', 'c', version: '3.1.0',
+ meson_version: '>= 0.37',
default_options: [ 'buildtype=plain' ])
#