From 4c276bbc4d0f252a02aa82732efbf0b8b8ad25c9 Mon Sep 17 00:00:00 2001 From: Abigail G Date: Wed, 24 Mar 2021 21:09:04 -0400 Subject: [PATCH 1/2] add system depedencies to development guide --- DEVELOPING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/DEVELOPING.md b/DEVELOPING.md index d22f4e9..960a1f6 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -8,6 +8,7 @@ 1. Make sure the `master` branch is up to date, then make yourself a new branch with a descriptive name. 1. Once the forked repo is cloned and on the proper branch, you can set up the development environment. 1. Install python 3.9 or higher. + 1. Install `libcairo` and `libjpeg`. Package names may vary by distro or OS. 1. Run `make dev-install`. This should install everything you need to develop and run qrm. 1. [Create a bot and token][2], and add it to `data/keys.py`. From aaec204c4336e603cef1ff0a59a0402d6263d64f Mon Sep 17 00:00:00 2001 From: Abigail G Date: Wed, 24 Mar 2021 21:13:10 -0400 Subject: [PATCH 2/2] update readme to add system dependencies --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3141784..460abb9 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ Requires Python 3.9 or newer. Prep the environment. For more information on extra options, see the [quick-bot-no-pain Makefile documentation](https://github.com/0x5c/quick-bot-no-pain/blob/master/docs/makefile.md). +Install `libcairo` and `libjpeg` (package names may vary by distro or OS). Then run: + ``` $ make install ```