Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
AllenDowney
GitHub Repository: AllenDowney/ModSimPy
Path: blob/master/jb/build.sh
1381 views
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