From db3ee616544bafd861fad06da4b428a413cd531d Mon Sep 17 00:00:00 2001 From: Miguel Palhas Date: Sat, 26 Oct 2024 15:25:04 +0100 Subject: [PATCH] Instructions for building on Arch-based distros (#2319) --- docs/development_environment.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/development_environment.mdx b/docs/development_environment.mdx index d8a0035b..8c38e3cc 100644 --- a/docs/development_environment.mdx +++ b/docs/development_environment.mdx @@ -83,6 +83,14 @@ sudo dnf update sudo dnf install python3-pip python3-devel python3-virtualenv autoconf openssl-devel libxml2-devel libxslt-devel libjpeg-turbo-devel libffi-devel systemd-devel zlib-devel pkgconf-pkg-config libavformat-free-devel libavcodec-free-devel libavdevice-free-devel libavutil-free-devel libswscale-free-devel ffmpeg-free-devel libavfilter-free-devel ffmpeg-free gcc gcc-c++ cmake ``` +### Developing on Arch / Manjaro + +Install the core dependencies. + +```shell +sudo pacman -Sy base-devel python python-pip python-virtualenv autoconf libxml2 libxslt libjpeg-turbo libffi systemd zlib pkgconf ffmpeg gcc cmake +``` + ### Developing on Windows To develop on Windows, you will need to use the Linux subsystem (WSL). Follow the [WSL installation instructions](https://learn.microsoft.com/windows/wsl/install) and install Ubuntu from the Windows Store. Once you're able to access Linux, follow the Linux instructions.