From db92373e58e1ec4e542524aa33f970ece822b0ba Mon Sep 17 00:00:00 2001 From: Dominick Leppich Date: Mon, 25 Nov 2024 08:41:30 +0100 Subject: [PATCH] docs: python venv installation fix --- docs/de/migration.md | 1 + docs/en/migration.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/de/migration.md b/docs/de/migration.md index 5f5469f..8e2593c 100644 --- a/docs/de/migration.md +++ b/docs/de/migration.md @@ -11,6 +11,7 @@ Erstellen Sie zunächst eine virtuelle Python-Umgebung, aktivieren Sie diese und ```bash python3 -m venv vmenv . vmenv/bin/activate +pip install wheel # This needs to be done beforehand as a separate call pip install requests mysql-connector-python==8.4.0 alive_progress lxml ``` diff --git a/docs/en/migration.md b/docs/en/migration.md index 7671cf4..f301dcb 100644 --- a/docs/en/migration.md +++ b/docs/en/migration.md @@ -11,6 +11,7 @@ First, create a virtual Python environment, activate it and install all required ```bash python -m venv vmenv . vmenv/bin/activate +pip install wheel # This needs to be done beforehand as a separate call pip install requests mysql-connector-python==8.4.0 alive_progress lxml ```