Skip to content

Commit

Permalink
fix sqlite3 installation
Browse files Browse the repository at this point in the history
  • Loading branch information
mhwasil committed Oct 23, 2024
1 parent dd04c4f commit bf10858
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion geo-notebook/cuda12-pytorch-2.2.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ 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 apt install -y sqlite3 libsqlite3-dev
RUN apt update -y && \
apt install -y sqlite3 libsqlite3-dev
rm -rf /var/lib/apt/lists/*

RUN rm /tmp/requirements.txt && \
/opt/conda/bin/conda clean -afy && \
Expand Down

0 comments on commit bf10858

Please sign in to comment.