Skip to content

Commit

Permalink
doc(contributing.md): add rpm section, update deb cmds (#5130)
Browse files Browse the repository at this point in the history
* doc: add rpm section, update deb cmds
  • Loading branch information
hahnandrew authored and Equartey committed Jul 17, 2024
1 parent ba2dea3 commit 508a6ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 508a6ea

Please sign in to comment.