Skip to content

Commit 3b1fab7

Browse files
committed
New docker build for TDC with the numpy/numba/hdbscan mess
1 parent b08af0c commit 3b1fab7

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

tridesclous/Dockerfile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,19 @@ FROM python:3.8
33
# downgrade pip version to avoid dependency issues during installations
44
RUN pip install --no-input pip==21.2.4
55

6-
RUN pip install numpy
6+
77

88
# Install prerequisites
99
RUN apt-get update && apt-get install -y libgl1-mesa-glx
10+
11+
# need to force some version
12+
RUN pip install numpy==1.20
13+
RUN pip install numba
14+
RUN pip install git+https://github.com/scikit-learn-contrib/hdbscan.git
15+
16+
1017
RUN pip install Cython
11-
RUN pip install scipy numpy pandas scikit-learn matplotlib seaborn tqdm openpyxl quantities neo numba hdbscan
18+
RUN pip install scipy pandas scikit-learn matplotlib seaborn tqdm openpyxl quantities neo
1219
RUN pip install h5py
1320
RUN pip install loky
1421

0 commit comments

Comments
 (0)