We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 315fdd5 commit b68968eCopy full SHA for b68968e
Dockerfile
@@ -4,6 +4,10 @@ FROM python:3.9.1
4
# install numpy & cython
5
RUN pip install numpy cython
6
7
+# install duckdb and its extensions before pyprophet
8
+RUN pip install duckdb
9
+RUN python -c "import duckdb; conn = duckdb.connect(); conn.execute(\"INSTALL 'sqlite_scanner'\"); conn.execute(\"LOAD 'sqlite_scanner'\");"
10
+
11
# install PyProphet and dependencies
12
ADD . /pyprophet
13
WORKDIR /pyprophet
0 commit comments