From 5384440388e9acf37703ed77d1512d46cfb153a1 Mon Sep 17 00:00:00 2001 From: Henrik Finsberg Date: Tue, 14 Feb 2023 06:14:43 -0800 Subject: [PATCH 1/2] Fix jupyter-book command --- docs/jupyter-book.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/jupyter-book.md b/docs/jupyter-book.md index 5316872..5227a54 100644 --- a/docs/jupyter-book.md +++ b/docs/jupyter-book.md @@ -18,11 +18,11 @@ A good guide for setting up the book can be found at: [Jupyterbook - Official do ## Installation and building Jupyter-book can be installed with `pip` ```bash -python -m pip install jupyterbook +python -m pip install jupyter-book ``` and building the book can be done with the following command ```bash -jupyter book build path/to/_config.yml +jupyter-book build path/to/_config.yml ``` ## `_toc.yml` From 7cf06ef2ed361cd4d1f616f007d802b844974e0a Mon Sep 17 00:00:00 2001 From: Henrik Finsberg Date: Tue, 14 Feb 2023 06:15:40 -0800 Subject: [PATCH 2/2] Use new release of jupyter-book --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0617ee9..6b772f8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -git+https://github.com/executablebooks/jupyter-book.git@master +jupyter-book>=0.13.2