From 4c05862f5a29bbe8329e0304e306fbb5a6a8b903 Mon Sep 17 00:00:00 2001 From: Andrew Hahn <58017052+hahnandrew@users.noreply.github.com> Date: Fri, 12 Jul 2024 17:44:22 -0400 Subject: [PATCH] doc(contributing.md): add rpm section, update deb cmds (#5130) * doc: add rpm section, update deb cmds --- CONTRIBUTING.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 77a8029273..bc50e271c7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -110,9 +110,13 @@ Some platforms require additional setup. See below for details. `libsecret` and `glib` are required for some plugins. They can be installed on Debian based linux distributions such as Ubuntu by running the command below. ```sh -sudo apt-get update && sudo apt-get install libsecret-1-dev libglib2.0-dev +sudo apt update && sudo apt install libsecret-1-dev libglib2.0-dev ``` +For RPM-based Linux distributions such as Fedora, CentOS, or RHEL, you can install `libsecret` and `glib` by running the following command: +```sh +sudo dnf update && sudo dnf install libsecret-devel glib2-devel +``` **VS Code Remote Container** [VS Code Remote Containers](https://code.visualstudio.com/docs/remote/containers) can be used for linux development. `/devcontainer` contains a Dockerfile that will install the required dependencies.