From 302e119f839435080c9a9e3c2af3d2e8708245b1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Wxcaf=C3=A9=20=28Cl=C3=A9ment=20Hertling=29?=
 <wxcafe@wxcafe.net>
Date: Thu, 12 Jul 2018 21:16:33 +0200
Subject: [PATCH] removes use of script for simpler direct installation

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

diff --git a/docs/installation/debian.rst b/docs/installation/debian.rst
index c91580b6..c71f6f86 100644
--- a/docs/installation/debian.rst
+++ b/docs/installation/debian.rst
@@ -119,30 +119,19 @@ First, switch to the api directory:
     cd api
 
 A few OS packages are required in order to run Funkwhale. On Debian-like
- systems, the list is available in ``api/requirements.apt`` or by running
-``./install_os_dependencies.sh list`` and in ``api/requirements.pac`` on
-Arch.
-
-.. note::
-
-    Ensure you are running the next commands as root or using sudo
-    (and not as the funkwhale) user.
-
-You can install those packages all at once:
-
-On Debian-like systems:
+systems, they can be installed with
 
 .. code-block:: shell
 
-    ./install_os_dependencies.sh install
+    sudo apt install build-essential ffmpeg libjpeg-dev libmagic-dev libpq-dev postgresql-client python3-dev
 
-On Arch Linux and its derivatives:
+On Arch, run
 
 .. code-block:: shell
 
     pacman -S $(cat api/requirements.pac)
 
-From now on you can switch back to the funkwhale user.
+From now on, you should use the funkwhale user for all commands.
 
 Python dependencies
 --------------------
-- 
GitLab