From a57ddf78ed13fa756a845488bc17b977cda1d82e Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Tue, 11 Dec 2018 10:53:19 +0100
Subject: [PATCH] Install wheel in the virtualenv

---
 docs/installation/debian.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/installation/debian.rst b/docs/installation/debian.rst
index ba0bc2756..171f28c44 100644
--- a/docs/installation/debian.rst
+++ b/docs/installation/debian.rst
@@ -169,12 +169,11 @@ To avoid collisions with other software on your system, Python dependencies
 will be installed in a dedicated
 `virtualenv <https://docs.python.org/3/library/venv.html>`_.
 
-First, create the virtualenv and install wheel:
+First, create the virtualenv:
 
 .. code-block:: shell
 
     python3 -m venv /srv/funkwhale/virtualenv
-    pip3 install wheel
 
 This will result in a ``virtualenv`` directory being created in
 ``/srv/funkwhale/virtualenv``.
@@ -192,6 +191,7 @@ Finally, install the python dependencies:
 
 .. code-block:: shell
 
+    pip install wheel
     pip install -r api/requirements.txt
 
 .. important::
-- 
GitLab