This is meant to demonstrate by example how to deploy tutorial materials. The examples show common patterns including runnable code, plots, exercises with solutions, etc.
````{tab-item} Locally with pixi
Clone the repository and launch JupyterLab.
```sh
git clone https://github.com/scientific-python/executable-tutorials
cd executable-tutorials
pixi run start
```
````
````{tab-item} Locally with pip
Clone the repository, create an enviornment, install the requirements, and
launch JupyterLab.
```sh
git clone https://github.com/scientific-python/executable-tutorials
cd executable-tutorials
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
jupyter lab
```
````
````{tab-item} In Cloud with Binder
[Open on Binder][].
````
````{tab-item} JupyterLite (experimental)
[Open with JupyterLite][].
````
Or, instead of running the code, you may view the code and results by following the links below.
---
maxdepth: 1
glob:
caption: User tutorials
---
tutorials/**/*
---
maxdepth: 1
caption: Contributing
---
contributing
maintainer-guide