diff --git a/README.md b/README.md index 9666659..22ee71a 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Full documentation is available at https://supysonic.readthedocs.io/ Use the following commands to install Supysonic, create an admin user, define a library folder, scan it and start serving on port 5722 using [Gunicorn][]. - $ pip install git+https://github.com/spl0k/supysonic.git + $ pip install supysonic $ pip install gunicorn $ supysonic-cli user add MyUserName $ supysonic-cli user setroles --admin MyUserName diff --git a/docs/setup/deploying/wsgi-standalone.rst b/docs/setup/deploying/wsgi-standalone.rst index a47d073..1d24504 100644 --- a/docs/setup/deploying/wsgi-standalone.rst +++ b/docs/setup/deploying/wsgi-standalone.rst @@ -69,7 +69,7 @@ __ https://uwsgi-docs.readthedocs.io/en/latest/ __ https://flask.palletsprojects.com/en/2.0.x/deploying/uwsgi/ Waitress -======== +-------- `Waitress`__ is meant to be a production-quality pure-Python WSGI server with very acceptable performance. It has no dependencies except ones which live in diff --git a/docs/setup/index.rst b/docs/setup/index.rst index e2369af..04c71c5 100644 --- a/docs/setup/index.rst +++ b/docs/setup/index.rst @@ -13,7 +13,7 @@ music is located 😏). This uses `gunicorn`__, but there are :: - pip install git+https://github.com/spl0k/supysonic.git + pip install supysonic pip install gunicorn supysonic-server diff --git a/docs/setup/install.rst b/docs/setup/install.rst index 027588d..afcca5a 100644 --- a/docs/setup/install.rst +++ b/docs/setup/install.rst @@ -26,8 +26,8 @@ corresponding Python package, ``python-pymysql`` for MySQL or $ apt install python-psycopg2 -For other distributions, you might consider installing from :ref:`docker` images -or from `source`_. +For other distributions, you might consider installing with `pip`_ or from +:ref:`docker` images. Windows ------- @@ -49,26 +49,19 @@ Guide to Python's`__ Python on Windows installation guides. You must install `Python 3`__. Once Python is installed, you can install Supysonic using :command:`pip`. Refer -to the `source installation instructions `_ below for more information. +to the `installation instructions `_ below for more information. __ https://docs.python-guide.org/ __ https://docs.python-guide.org/starting/install3/win/ -.. _source: +.. _pip: -Source ------- +pip +--- -You can install Supysonic directly from a clone of the `Git repository`__. This -can be done either by cloning the repo and installing from the local clone:: +Simply install the package ``supysonic`` with :command:`pip`:: - $ git clone https://github.com/spl0k/supysonic.git - $ cd supysonic - $ pip install . - -or simply installing directly via :command:`pip`:: - - $ pip install git+https://github.com/spl0k/supysonic.git + $ pip install supysonic This will install Supysonic along with the minimal dependencies it needs, but those don't include the requirements for the web server. For this you'll need @@ -97,5 +90,3 @@ PostgreSQL. :: $ pip install psycopg2-binary - -__ https://github.com/spl0k/supysonic