From 74fed87cc99af982d076e8ceb12f34cd11a911fc Mon Sep 17 00:00:00 2001 From: Mariusz Pawelski Date: Tue, 6 Sep 2022 14:59:10 +0200 Subject: [PATCH] [docs] update STYLES.md about installing protobuf This is small a docs update to ease contributing to the project. I added another option of installing required `protobuf` dependency. This is actually what allowed me to build the styles after following INSTALL.md on clean Linux (Windows WSL) installation. I guess I didn't have `pip` installed because INSTALL.md only tell to install `python3`, not `python3-pip`. Signed-off-by: Mariusz Pawelski --- docs/STYLES.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/STYLES.md b/docs/STYLES.md index 5a911cc112..b2b5abe936 100644 --- a/docs/STYLES.md +++ b/docs/STYLES.md @@ -17,10 +17,14 @@ and ["icons wanted" issues](https://github.com/organicmaps/organicmaps/issues?q= To work with styles first [clone the OM repository](INSTALL.md#getting-sources). -Install a `protobuf` python package, e.g. +Install a `protobuf` python package with `pip` ``` pip install protobuf ``` +or with your OS package manager, e.g for Ubuntu +``` +sudo apt install python3-protobuf +``` To run the `generate_symbols.sh` script install `optipng` also, e.g. for Ubuntu ```