We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1a19be commit 3c07f03Copy full SHA for 3c07f03
Dockerfile
@@ -3,11 +3,12 @@ FROM ubuntu:18.04
3
# Avoid user interaction dialog
4
ENV DEBIAN_FRONTEND=noninteractive
5
6
-RUN apt -y update
7
-RUN apt install -y git python3 python3-pip gcc psutils cmake wget make
+RUN apt -y update
+# Binder fails with Cython from pip -> use apt cython3
8
+RUN apt install -y git python3 python3-pip gcc psutils cmake wget make cython3
9
RUN apt install -y gfortran libblas-dev liblapack-dev python3-tk sudo fonts-lato
10
RUN pip3 install pip -U
-RUN pip3 install cython matplotlib pytest scipy psutil pyvtk ipywidgets -U
11
+RUN pip3 install matplotlib pytest scipy psutil pyvtk ipywidgets -U
12
RUN pip3 install --no-cache-dir notebook
13
14
RUN ln -s /usr/bin/python3 /usr/bin/python
0 commit comments