Skip to content

Commit 2f67476

Browse files
committed
docs: use unpinned python3-dev in setup instructions
python3.12-dev doesn't exist on releases whose default Python isn't 3.12 (e.g. Ubuntu Resolute), so the install command failed there. python3-dev pulls the correct dev headers for the running release's default Python (3.13 on Resolute/Trixie, 3.12 on Noble, ...). Fixed in README.md and DOCUMENTATION.md. Signed-off-by: Igor Pecovnik <igor@armbian.com>
1 parent f97cb47 commit 2f67476

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

DOCUMENTATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Ensure you have Python and the necessary development packages installed:
5050

5151
```bash
5252
sudo apt-get update
53-
sudo apt-get install python3 python3-pip python3-venv python3.12-dev
53+
sudo apt-get install python3 python3-pip python3-venv python3-dev
5454
```
5555

5656
If using Debian, you may need to install the following packages for `mkdocs-material`:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ However, to **enjoy a fully rendered local preview** with proper styling and liv
1414

1515
```bash
1616
sudo apt-get update
17-
sudo apt-get install python3 python3-pip python3-venv python3.12-dev
17+
sudo apt-get install python3 python3-pip python3-venv python3-dev
1818
```
1919

2020
If using Debian, you may need to install the following packages for `mkdocs-material`:

0 commit comments

Comments
 (0)