Install libsqlite3-dev when installing pythonz
since it's needed to build python w/ sqlite3 support
This commit is contained in:
parent
720010d889
commit
218d9e5476
|
@ -64,7 +64,9 @@ def install_pythonz(c):
|
|||
apt.install(
|
||||
c,
|
||||
'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/src/pythonz'):
|
||||
|
|
Loading…
Reference in a new issue