Updated readme

This commit is contained in:
Mark Qvist 2024-09-11 18:04:31 +02:00
parent bad80fab50
commit 33d1b7c90d

View File

@ -146,15 +146,24 @@ sideband
## On macOS ## On macOS
A DMG file containing a macOS app bundle is available on the [latest release](https://github.com/markqvist/Sideband/releases/latest) page. On macOS, you can install Sideband with `pip3` or `pipx`. Due to the many different potential Python versions and install paths across macOS versions, the easiest install method is to use `pipx`.
Please note that audio messaging functionality isn't supported on macOS yet. Please support the development if you'd like to see this feature added faster. If you don't already have the `pipx` package manager installed, it can be installed via [Homebrew](https://brew.sh/) with `brew install pipx`.
Alternatively, you can install Sideband with ``pip3`` on macOS:
```bash ```bash
# Install Sideband and dependencies on macOS: # Install Sideband and dependencies on macOS using pipx:
pip3 install sbapp pipx install sbapp
pipx ensurepath
# Run it
sideband
```
Or, if you prefer to use `pip` directly, follow the instructions below. In this case, if you have not already installed Python and `pip3` on your macOS system, [download and install](https://www.python.org/downloads/) the latest version first.
```bash
# Install Sideband and dependencies on macOS using pip:
pip3 install sbapp --user --break-system-packages
# Run it: # Run it:
python3 -m sbapp.main python3 -m sbapp.main
@ -166,8 +175,6 @@ sideband
``` ```
If you have not already installed Python and `pip3` on your macOS system, [download and install](https://www.python.org/downloads/) the latest version first.
## On Windows ## On Windows
Even though there is currently not an automated installer, or packaged `.exe` file for Sideband on Windows, you can still install it through `pip`. If you don't already have Python installed, [download and install](https://www.python.org/downloads/) the latest version of Python. Even though there is currently not an automated installer, or packaged `.exe` file for Sideband on Windows, you can still install it through `pip`. If you don't already have Python installed, [download and install](https://www.python.org/downloads/) the latest version of Python.