From e4066c86aeb9791402b513f09cd90da8169f5f7f Mon Sep 17 00:00:00 2001 From: Joshua Boyd Date: Tue, 23 Apr 2024 02:25:57 -0700 Subject: [PATCH] Update README.md Mention package pre-requisites for common Linux systems. --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index ad15709..4ac0ac7 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,21 @@ Python strings. # Installation +## Pre-reqs + +On linux, you will want to install `liblzo2-dev` or your distributions equivelent. + +```bash +sudo apt install liblzo2-dev +``` +or +```bash +sudo yum install liblzo2-devel +``` +and the two most likely ways. + +## Actual Install + ``` pip install python-lzo ```