File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11FROM python:3.8
22
3+ # downgrade pip version to avoid dependency issues during installations
4+ RUN pip install --no-input pip==21.2.4
5+
36RUN pip install numpy
47
58# Install MountainSort4
6- RUN pip install mountainsort4==1.0.0
9+ RUN pip install mountainsort4==1.0.0
Original file line number Diff line number Diff line change 11FROM python:3.8
22
3+ # downgrade pip version to avoid dependency issues during installations
4+ RUN pip install --no-input pip==21.2.4
5+
36RUN pip install numpy
47
58# Install SpyKING CIRCUS
Original file line number Diff line number Diff line change 11FROM python:3.8
22
3- RUN pip install numpy
3+ # downgrade pip version to avoid dependency issues during installations
4+ RUN pip install --no-input pip==21.2.4
5+
6+
47
58# Install prerequisites
69RUN 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+
717RUN pip install Cython
8- 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
919RUN pip install h5py
1020RUN pip install loky
1121
You can’t perform that action at this time.
0 commit comments