Skip to content
Snippets Groups Projects
Commit a57ddf78 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Install wheel in the virtualenv

parent fde403fa
No related branches found
No related tags found
No related merge requests found
...@@ -169,12 +169,11 @@ To avoid collisions with other software on your system, Python dependencies ...@@ -169,12 +169,11 @@ To avoid collisions with other software on your system, Python dependencies
will be installed in a dedicated will be installed in a dedicated
`virtualenv <https://docs.python.org/3/library/venv.html>`_. `virtualenv <https://docs.python.org/3/library/venv.html>`_.
First, create the virtualenv and install wheel: First, create the virtualenv:
.. code-block:: shell .. code-block:: shell
python3 -m venv /srv/funkwhale/virtualenv python3 -m venv /srv/funkwhale/virtualenv
pip3 install wheel
This will result in a ``virtualenv`` directory being created in This will result in a ``virtualenv`` directory being created in
``/srv/funkwhale/virtualenv``. ``/srv/funkwhale/virtualenv``.
...@@ -192,6 +191,7 @@ Finally, install the python dependencies: ...@@ -192,6 +191,7 @@ Finally, install the python dependencies:
.. code-block:: shell .. code-block:: shell
pip install wheel
pip install -r api/requirements.txt pip install -r api/requirements.txt
.. important:: .. important::
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment