From 5b765b9ec51a8c135a8532b3fd5cb2bd91855916 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Fri, 19 Sep 2025 16:55:45 +0200 Subject: [PATCH] Add Arch Linux to installing from source docs Note that Arch Linux usually has no separate `-dev` packages, but ships development headers with the normal package. --- docs/installation.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/installation.rst b/docs/installation.rst index 094c847c4..d7272a274 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -191,6 +191,19 @@ instructions, try to use your package manager to install the dependencies. After you have installed the dependencies, you can proceed with steps outlined under :ref:`pip-installation`. +Arch Linux +++++++++++ + +Install the runtime and build dependencies:: + + pacman -S python python-pip python-virtualenv openssl acl xxhash lz4 zstd base-devel + pacman -S fuse2 # needed for llfuse + pacman -S fuse3 # needed for pyfuse3 + +Note that Arch Linux specifically doesn't support +`partial upgrades `__, +so in case some packages cannot be retrieved from the repo, run with ``pacman -Syu``. + Debian / Ubuntu +++++++++++++++