From 11c83aa07a344bb192911182466c5169be5395f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20M=2E=20Thi=C3=A9ry?= Date: Mon, 5 Oct 2020 23:52:50 +0200 Subject: [PATCH] Tentative installation of SageMath --- Dockerfile | 3 ++- environment.yml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2873629..4c461d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ USER root # Install system utilities with apt RUN apt-get update && \ - apt-get install -y --no-install-recommends openssh-client rsync unison less tree curl gdb imagemagick libopenjp2-7 && \ + apt-get install -y --no-install-recommends openssh-client rsync unison less tree curl gdb imagemagick libopenjp2-7 sagemath && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* @@ -26,6 +26,7 @@ RUN conda env update -n base -f environment.yml && rm environment.yml # Install the software stack for each of the following repositories RUN for REPO in \ + https://gitlab.u-psud.fr/MethNum/scripts.git \ https://gitlab.u-psud.fr/Info111/outbound.git \ https://gitlab.u-psud.fr/Info122/Info122.git \ https://github.com/madclam/info113/ \ diff --git a/environment.yml b/environment.yml index c83c377..eef0996 100644 --- a/environment.yml +++ b/environment.yml @@ -13,6 +13,7 @@ dependencies: - ipywidgets # Interactive widgets - rise # Slides - nbdime # Jupyter-git integration +- nb_conda_kernels # In particular for sagemath which is not installed by conda - pip # Visual Studio (conda packages) -- GitLab