Skip to content

Commit b2ee979

Browse files
mzen17FabianLars
andauthored
Add set up installations for Enterprise Linux distributions (RHEL) (tauri-apps#1382)
* Update prerequisites.md to include support for Enterprise Linux Distributions * Fixed some formatting with the table. * Added the Enterprise Linux details to the Fedora. * wording * redhat -> rhel * it's too early for me lol --------- Co-authored-by: Fabian-Lars <[email protected]>
1 parent e949979 commit b2ee979

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

docs/guides/getting-started/prerequisites.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ sudo pacman -S --needed \
134134
```
135135

136136
</TabItem>
137-
<TabItem value="fedora" label="Fedora">
137+
<TabItem value="fedora" label="Fedora/RHEL">
138138

139-
```sh
139+
```sh title=Fedora
140140
sudo dnf check-update
141141
sudo dnf install webkit2gtk4.0-devel \
142142
openssl-devel \
@@ -148,7 +148,19 @@ sudo dnf install webkit2gtk4.0-devel \
148148
sudo dnf group install "C Development Tools and Libraries"
149149
```
150150

151-
Note that on Fedora 36 and below the `webkit2gtk4.0-devel` package was called `webkit2gtk3-devel`.
151+
Note that for Fedora 36 and below, and all Enterprise Linux Distributions, you need to install `webkit2gtk3-devel` instead of `webkit2gtk4.0-devel`.
152+
For Enterprise Linux, you also need `"Development Tools"` instead of `"C Development Tools and Libraries"`. For example:
153+
```sh title="Enterprise Linux"
154+
sudo dnf check-update
155+
sudo dnf install webkit2gtk3-devel \
156+
openssl-devel \
157+
curl \
158+
wget \
159+
file \
160+
libappindicator-gtk3-devel \
161+
librsvg2-devel
162+
sudo dnf group install "Development Tools"
163+
```
152164

153165
</TabItem>
154166
<TabItem value="gentoo" label="Gentoo">

0 commit comments

Comments
 (0)