Skip to content

Commit 2f4dc8f

Browse files
authored
Merge pull request #11 from saraedum/conda
Fix setup for conda
2 parents 98ed8d1 + e348c33 commit 2f4dc8f

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

environment.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
name: test-binder-sage
22

33
channels:
4-
- defaults
54
- conda-forge
6-
5+
- defaults
76
dependencies:
8-
- sage=9.2
9-
# ipywidgets is a Sage dependency, but rendering fails in binder
10-
# presumably some extension activation missing.
11-
# https://discourse.jupyter.org/t/binder-and-sagemath/11059/8
7+
- jupyterlab
8+
# Required by the SageMath kernel in Jupyter
129
- ipywidgets
10+
# Install the full distribution of SageMath. The resulting image might take a
11+
# long time to load on binder. Replace sage with sagelib, to use a minimal
12+
# distribution of SageMath, without plotting, without symbolic computations, ….
13+
- sage=9.6
14+
# If you chose sagelib instead of sage above, you can add the required
15+
# features manually here, e.g., matplotlib-base for basic plotting, sympy for
16+
# symbolic computations, …. See the "run" section of
17+
# https://github.com/conda-forge/sage-feedstock/blob/main/recipe/meta.yaml
18+
# for the things that are included in "sage" but that might be missing from
19+
# "sagelib".

0 commit comments

Comments
 (0)