Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion msal-python-conceptual/advanced/linux-broker-py-wsl.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ Install the following dependencies on your Linux platform:
To install on debian/Ubuntu based Linux distribution:

```bash
sudo add-apt-repository -y universe
sudo apt update
sudo apt install libwebkit2gtk-4.1-dev -y

sudo apt install libsecret-1-0 -y

#from Powershell, run
Expand All @@ -63,7 +67,15 @@ wsl.exe --shutdown
To install on Red Hat/Fedora based Linux distribution:

```bash
sudo dnf install libsecret-1-0 -y
sudo dnf install libsecret-1-0 webkitgtk4-devel libubsan -y
```

For RHEL 8, you'll also need to install OpenSSL3 packages from the EPEL repository:

```bash
sudo dnf install -y "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm"
sudo dnf update
sudo dnf install -y openssl3-devel openssl3-libs

#from Powershell, run
wsl.exe --shutdown
Expand Down
14 changes: 12 additions & 2 deletions msal-python-conceptual/advanced/linux-broker-py.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,15 +135,25 @@ If not, install it using the package manager for your distribution.
To install on debian/Ubuntu based Linux distribution:

```bash
sudo apt install python3 python3-pip -y
sudo add-apt-repository -y universe
sudo apt update
sudo apt install python3 python3-pip libwebkit2gtk-4.1-dev -y
```

#### [Red Hat Enterprise Linux](#tab/rheldep)

To install on Red Hat/Fedora based Linux distribution:

```bash
sudo dnf install python3 python3-pip -y
sudo dnf install python3 python3-pip libubsan webkitgtk4-devel -y
```

For RHEL 8, you'll also need to install OpenSSL3 packages from the EPEL repository:

```bash
sudo dnf install -y "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm"
sudo dnf update
sudo dnf install -y openssl3-devel openssl3-libs
```

---
Expand Down
Loading