From cee35fca4a986b99b29d6b1551af78c04e3f3bbc Mon Sep 17 00:00:00 2001 From: Mohammad Wasil Date: Thu, 24 Oct 2024 09:49:40 +0200 Subject: [PATCH] downgrade libsqlite to fix sqlite_deserialize issue --- geo-notebook/cuda12-pytorch-2.2.2/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/geo-notebook/cuda12-pytorch-2.2.2/Dockerfile b/geo-notebook/cuda12-pytorch-2.2.2/Dockerfile index ad7125e..4a6fde7 100644 --- a/geo-notebook/cuda12-pytorch-2.2.2/Dockerfile +++ b/geo-notebook/cuda12-pytorch-2.2.2/Dockerfile @@ -22,7 +22,8 @@ RUN pip install --no-cache-dir -r /tmp/requirements.txt USER root # (maybe) fix sqlite3 issue # ImportError: /opt/conda/lib/python3.11/lib-dynload/_sqlite3.cpython-311-x86_64-linux-gnu.so: undefined symbol: sqlite3_deserialize -RUN mamba install -y sqlite +# https://github.com/proxystore/taps/issues/151#issuecomment-2339537161 +RUN mamba install -y libsqlite==3.45.* RUN rm /tmp/requirements.txt && \ /opt/conda/bin/conda clean -afy && \