Install libsqlite3-dev when installing pythonz

since it's needed to build python w/ sqlite3 support
This commit is contained in:
Lance Edgar 2020-03-22 17:28:00 -05:00
parent 720010d889
commit 218d9e5476

View file

@ -64,7 +64,9 @@ def install_pythonz(c):
apt.install( apt.install(
c, c,
'curl', 'curl',
'zlib1g-dev', # seems to be needed when building python # these are needed when building python:
'libsqlite3-dev',
'zlib1g-dev',
) )
if not exists(c, '/usr/local/pythonz'): if not exists(c, '/usr/local/pythonz'):
if not exists(c, '/usr/local/src/pythonz'): if not exists(c, '/usr/local/src/pythonz'):