1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-12-22 08:56:17 +00:00

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.
This commit is contained in:
Louis-Philippe Véronneau 2021-12-03 13:53:45 -05:00
parent 799bfa3dde
commit a02ece78ef
No known key found for this signature in database
GPG Key ID: F4257A50B21CFA85

View File

@ -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.