This repository holds a Jupyter Book template for building interactive ProbLog books. The built book is hosted on GitHub Pages and is available under http://problog-template.simply-logical.space. This webpage describes the process of building interactive ProbLog content with the aforementioned technology stack.
- Pull the book repository
git clone https://github.com/simply-logical/problog-book-template.git cd problog-book-template
- Install Jupyter Book
(
requirements-jb.txt
) and execution requirements (requirements.txt
)pip install -r requirements-jb.txt pip install -r requirements.txt
- Build the book
jb build .
- Build the slides
./build_slides.sh
- Open the html build
or run it as a server
open _build/html/index.html
python -m http.server --directory _build/html open http://localhost:8000