Skip to content
Merged
Changes from all commits
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
16 changes: 15 additions & 1 deletion docs/guides/contribute/mkdocs_lsyncd.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
title: Local Documentation - LXD
author: Steven Spencer
contributors: Ezequiel Bruni
update: 27-Feb-2022
tested with: 8.5, 8.6
tags:
- contribute
- local envirmonent lxd
---

# Introduction
Expand Down Expand Up @@ -58,6 +61,17 @@ First, get into the container with:
lxc exec mkdocs bash
```

!!! important "Changes in requirements.txt for 8.x"

The current `requirements.txt` will require a newer version of Python than what is installed by default in Rocky Linux 8.5 or 8.6. To be able to install all the other dependencies, do the following:

```
sudo dnf module enable python38
sudo dnf install python38
```

You can then skip installing `python3-pip` in the packages found below.

We will need a few packages to accomplish what we need to do:

```
Expand Down