Updated readme

This commit is contained in:
Mark Qvist 2024-12-15 12:03:48 +01:00
parent e083fd2fb4
commit 78f2b5de3b
1 changed files with 17 additions and 5 deletions

View File

@ -195,24 +195,36 @@ To install Sideband via `pip`, follow these instructions:
```bash
# Install Sideband and dependencies on macOS using pip:
pip3 install sbapp --user --break-system-packages
pip3 install sbapp
# Optionally install RNS command line utilities:
pip3 install rns
# Run Sideband from the terminal:
#################################
sideband
# or
python3 -m sbapp.main
# Enable debug logging:
#################################
sideband -v
# or
python3 -m sbapp.main -v
# Start Sideband in daemon mode:
#################################
sideband -d
# or
python3 -m sbapp.main -d
# If you add your pip install location to
# the PATH environment variable, you can
# also run Sideband simply using:
sideband
# If Python and pip was installed correctly,
# you can simply use the "sideband" command
# directly. Otherwise, you will manually
# need to add the pip binaries directory to
# your PATH environment variable, or start
# Sideband via the "python3 -m sbapp.main"
# syntax.
```