We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b08af0c commit 3b1fab7Copy full SHA for 3b1fab7
1 file changed
tridesclous/Dockerfile
@@ -3,12 +3,19 @@ FROM python:3.8
3
# downgrade pip version to avoid dependency issues during installations
4
RUN pip install --no-input pip==21.2.4
5
6
-RUN pip install numpy
+
7
8
# Install prerequisites
9
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
17
RUN pip install Cython
-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
19
RUN pip install h5py
20
RUN pip install loky
21
0 commit comments