Skip to content

Latest commit

 

History

History
83 lines (55 loc) · 1.43 KB

File metadata and controls

83 lines (55 loc) · 1.43 KB

Executable Tutorials

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.

How to Run The Code

````{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.

Example Tutorials

---
maxdepth: 1
glob:
caption: User tutorials
---

tutorials/**/*

Contributing documentation

---
maxdepth: 1
caption: Contributing
---

contributing
maintainer-guide