CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
AllenDowney

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: AllenDowney/ModSimPy
Path: blob/master/jb/build.sh
Views: 531
1
# pip install jupyter-book
2
# pip install ghp-import
3
4
# Build the Jupyter book version
5
6
# copy the chapter notebooks
7
cp ../ModSimPySolutions/chapters/chap*.ipynb .
8
9
# add tags to hide the solutions
10
python prep_notebooks.py
11
12
# build the HTML version
13
jb build .
14
15
# push it to GitHub
16
ghp-import -n -p -f _build/html
17
18