From f234fcc4d544c001947e6014308c0784a828bc59 Mon Sep 17 00:00:00 2001 From: 4c3e <97980799+4c3e@users.noreply.github.com> Date: Fri, 8 Apr 2022 15:02:36 -0400 Subject: [PATCH] Update README.md These steps allowed me to run Sideband from source on Linux, I already have all the needed RNS dependencies installed (following the steps from the manual), so there's a chance I'm missing additional dependencies that a fresh install would not have. --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 317a10a..e02c05a 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,17 @@ Sideband is currently provided as an early alpha-quality preview release. No use If you want to help develop this program, get in touch. -For downloadable APK files for your device, [go here](https://unsigned.io/sideband). \ No newline at end of file +For downloadable APK files for your device, [go here](https://unsigned.io/sideband). + +### Run on Linux: + +~~~bash +# Install RNS Dependencies if Needed +pip3 install rns lxmf + +# Clone, Install Dependencies, and Run +git clone https://github.com/markqvist/Sideband.git +pip3 install plyer kivymd +cd Sideband +python3 main.py +~~~