Install wheel in the virtualenv

This commit is contained in:
Eliot Berriot 2018-12-11 10:53:19 +01:00
parent cb7aa5a642
commit 563f182875
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
1 changed files with 2 additions and 2 deletions

View File

@ -168,12 +168,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``.
@ -191,6 +190,7 @@ Finally, install the python dependencies:
.. code-block:: shell
pip install wheel
pip install -r api/requirements.txt
.. important::