Skip to content

Commit 1a446f8

Browse files
committedJun 19, 2021
Add guide how to fix Ubuntu 18.XX / Older debian installs in order to run configurator
1 parent 9664845 commit 1a446f8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
 

‎README.md

+19
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,25 @@ sudo usermod -a -G uucp $USER
7777
sudo usermod -a -G lock $USER
7878
```
7979

80+
##### Ubuntu 18.XX / Older Debian installs troubleshooting
81+
82+
On Ubuntu 18.XX you are not able to get recent git version by default, and some other system dependencies are missing.
83+
84+
Read more about this in [issue #26](https://github.com/ExpressLRS/ExpressLRS-Configurator/issues/26).
85+
86+
To work around that you can manually install required packages:
87+
88+
```
89+
# install missing sys packages
90+
sudo apt update
91+
sudo apt-get install gconf2 gconf-service python3-distutils
92+
93+
# install git version >= 2.25
94+
sudo add-apt-repository ppa:git-core/ppa
95+
sudo apt update
96+
sudo apt install git
97+
```
98+
8099
## Architecture
81100

82101
```

0 commit comments

Comments
 (0)