Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ newest development version (a.k.a. "master") with Git::

git clone https://github.com/spatialaudio/python-rtmixer.git --recursive
cd python-rtmixer
python3 -m pip install -e . --user
python3 -m pip install -e .

... where ``-e`` stands for ``--editable``.

Expand Down Expand Up @@ -51,7 +51,7 @@ pages locally using Sphinx and check if they look OK.
Initially, you might need to install a few packages that are needed to build the
documentation::

python3 -m pip install -r doc/requirements.txt --user
python3 -m pip install -r doc/requirements.txt

To (re-)build the HTML files, use::

Expand Down
14 changes: 6 additions & 8 deletions doc/installation.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
Installation
============

On Windows, macOS, and Linux you can install a precompiled wheel with::
On Windows, macOS and Linux you can install a precompiled "wheel" package with::

python3 -m pip install rtmixer

This will install ``rtmixer`` and its dependencies, including ``sounddevice``.

Depending on your Python installation,
you may have to use ``python`` instead of ``python3``.
If you have installed the module already,
you can use the ``--upgrade`` flag to get the newest release.

.. note:: On Linux, to use ``sounddevice`` and ``rtmixer`` you will need to
have PortAudio installed, e.g. via ``sudo apt install libportaudio2``.
On other platforms, PortAudio comes bundled with ``sounddevice``.

Developers can install in editable mode with some variant of::

git clone https://github.com/spatialaudio/python-rtmixer
cd python-rtmixer
git submodule update --init
python3 -m pip install -e .