|
To download the course material, you can either clone the repository or download the ZIP file from the course page.
git clone https://github.com/tapunict/tap2026.gitAll the Jupyter notebooks used in the lectures are stored in the /doc folder as .ipynb files.
To view them interactively, you’ll need to install Quarto and run:
quarto preview doc/filename.ipynbThis will produce an output similar to:
Browse at http://localhost:7887/
Listening on http://127.0.0.1:7887/
Your default browser will automatically open an interactive preview of the notebook.
You can also specify a custom port using the --port <port_number> option.
Alternatively, you can render each notebook as an HTML slide deck by running:
quarto render doc/filename.ipynbThe generated HTML files can then be opened in any modern web browser.
- Make sure you have Quarto and Jupyter properly installed before running any of the above commands.
- For more details and troubleshooting, refer to the official Quarto documentation.