From a02ece78efc583f743a1189c1c143190c11f8fc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Fri, 3 Dec 2021 13:53:45 -0500 Subject: [PATCH] Fix wrong package name for apt install commands. Since Debian 11 (Bullseye), python2 has been deprecated and all python packages should now use python3-foo versions. --- docs/setup/install.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/setup/install.rst b/docs/setup/install.rst index d5ff605..693b574 100644 --- a/docs/setup/install.rst +++ b/docs/setup/install.rst @@ -16,16 +16,16 @@ This will install Supysonic along with the minimal dependencies it needs to run. If you plan on using it with a MySQL or PostgreSQL database you also need the -corresponding Python package, ``python-pymysql`` for MySQL or -``python-psycopg2`` for PostgreSQL. +corresponding Python package, ``python3-pymysql`` for MySQL or +``python3-psycopg2`` for PostgreSQL. :: - $ apt install python-pymysql + $ apt install python3-pymysql :: - $ apt install python-psycopg2 + $ apt install python3-psycopg2 For other distributions, you might consider installing with `pip`_ or from :ref:`docker` images.