Skip to content

Latest commit

 

History

History
79 lines (52 loc) · 1.3 KB

File metadata and controls

79 lines (52 loc) · 1.3 KB

Executable Tutorials Repo setup best practices

How to Run The Code Yourself

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