From 1a446f8191a697eeda310f3effda6d5757b6f0df Mon Sep 17 00:00:00 2001 From: Julius Jurgelenas Date: Sat, 19 Jun 2021 20:52:08 +0300 Subject: [PATCH] Add guide how to fix Ubuntu 18.XX / Older debian installs in order to run configurator --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 399063f9d..1897fa319 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,25 @@ sudo usermod -a -G uucp $USER sudo usermod -a -G lock $USER ``` +##### Ubuntu 18.XX / Older Debian installs troubleshooting + +On Ubuntu 18.XX you are not able to get recent git version by default, and some other system dependencies are missing. + +Read more about this in [issue #26](https://github.com/ExpressLRS/ExpressLRS-Configurator/issues/26). + +To work around that you can manually install required packages: + +``` +# install missing sys packages +sudo apt update +sudo apt-get install gconf2 gconf-service python3-distutils + +# install git version >= 2.25 +sudo add-apt-repository ppa:git-core/ppa +sudo apt update +sudo apt install git +``` + ## Architecture ```