Skip to content

Installation

From PyPI using uv:

uv venv .venv
source .ven/bin/activate
uv pip install pushtunes

Or if using plain pip:

python3 -m venv .venv
source .venv/bin/activate
pip install pushtunes

Installing from source instead

Clone this source directory and then, in a virtualenv, using uv:

git clone https://codeberg.org/psy-q/pushtunes.git
cd pushtunes

uv venv .venv
source .venv/bin/activate
uv pip install .

Using plain old Python/pip:

git clone https://codeberg.org/psy-q/pushtunes.git
cd pushtunes

python3 -m venv .venv
source .venv/bin/activate
pip install .

Verify Installation

Check that Pushtunes is installed correctly:

pushtunes --help

You should see the help output listing all available commands.