From 194bf66e845f67ac3c14369ec6574ed45e9daf8d Mon Sep 17 00:00:00 2001 From: sir4ur0n Date: Tue, 26 May 2020 15:10:42 +0200 Subject: [PATCH] Add zlibc to readme --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index da1f915f99..da0bfc935d 100644 --- a/README.md +++ b/README.md @@ -53,24 +53,27 @@ then it means you have the command in PATH. #### Linux-specific pre-requirements -On Linux you will need install a couple of extra libraries (for Unicode ([ICU](http://site.icu-project.org/)) and [NCURSES](https://www.gnu.org/software/ncurses/)): +On Linux you will need install a couple of extra libraries: +- [Unicode (ICU)](http://site.icu-project.org/) +- [NCURSES](https://www.gnu.org/software/ncurses/) +- [Zlib](https://zlib.net/) **Debian 9/Ubuntu 18.04 or earlier**: ```bash -sudo apt install libicu-dev libtinfo-dev libgmp-dev +sudo apt install libicu-dev libtinfo-dev libgmp-dev zlib1g-dev ``` **Debian 10/Ubuntu 18.10 or later**: ```bash -sudo apt install libicu-dev libncurses-dev libgmp-dev +sudo apt install libicu-dev libncurses-dev libgmp-dev zlib1g-dev ``` **Fedora**: ```bash -sudo dnf install libicu-devel ncurses-devel # also zlib-devel if not already installed +sudo dnf install libicu-devel ncurses-devel zlib-devel ``` #### Windows-specific pre-requirements