Skip to content

Commit

Permalink
Install & enable JupyText on Binder
Browse files Browse the repository at this point in the history
  • Loading branch information
JorisVincent committed Mar 14, 2023
1 parent eb3d718 commit f415243
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/requirements.txt
@@ -1,4 +1,4 @@
jupyter-book==0.14
jupytext
jupytext>=1.13.3
jupyterlab_myst
ipywidgets
11 changes: 10 additions & 1 deletion postBuild
@@ -1,4 +1,13 @@
#!/bin/bash
set -e # don't allow errors to fail silently
echo `which pip` # in case the wrong `pip` is used, this will let us debug
pip install -e . # install the custom library

# Install and enable extensions...
pip install "jupytext[myst]>=1.13.3"
jupyter nbextension install --py jupytext --user
jupyter nbextension enable --py jupytext --user
jupyter lab build
jupyter serverextension enable jupytext

# Install stimupy
pip install -e .

0 comments on commit f415243

Please sign in to comment.