From c8ab84e46256f81c841a7a4bb1b174b75e4dea59 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 9 Jan 2023 09:01:31 -0600 Subject: [PATCH] Install `libssl-dev` when installing pythonz --- rattail_fabric2/python.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rattail_fabric2/python.py b/rattail_fabric2/python.py index 248f1fe..111a20f 100644 --- a/rattail_fabric2/python.py +++ b/rattail_fabric2/python.py @@ -85,6 +85,7 @@ def install_pythonz(c): 'curl', # these are needed when building python: 'libsqlite3-dev', + 'libssl-dev', 'zlib1g-dev', ) if not exists(c, '/usr/local/pythonz'):