From ad66845452207805569c7a2f4d81cd91fdd9d507 Mon Sep 17 00:00:00 2001 From: ix5 Date: Sun, 5 May 2024 22:23:35 +0200 Subject: [PATCH] docs/installation: Mention needed virtualenv package --- docs/docs/reference/installation.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/reference/installation.rst b/docs/docs/reference/installation.rst index ea5cc377..f06475fa 100644 --- a/docs/docs/reference/installation.rst +++ b/docs/docs/reference/installation.rst @@ -82,7 +82,7 @@ Install from PyPi Requirements ^^^^^^^^^^^^ -- Python 3.8+ (+ devel headers) +- Python 3.8+ (+ devel headers) and Virtualenv - SQLite 3.3.8 or later - a working C compiler @@ -91,13 +91,13 @@ For Debian/Ubuntu just `copy and paste .. code-block:: console - $ sudo apt-get install python3-dev sqlite3 build-essential + $ sudo apt-get install python3-dev python3-virtualenv sqlite3 build-essential Similar for Fedora (and derivates): .. code-block:: console - $ sudo yum install python3-devel sqlite + $ sudo yum install python3-devel python3-virtualenv sqlite $ sudo yum groupinstall “Development Tools” Installation