TNO Intern

Commit 2625f9b8 authored by Hen Brett's avatar Hen Brett 🐔
Browse files

Revert "updating documentation on how to run the jupyter notebook examples"

parent 372610b0
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -57,16 +57,12 @@ pixi install

## Running the Jupyter notebook examples

Examples showing what you can do with pythermogis can be found in the `examples` directory. To run these examples, you need to download some extra dependencies, using UV this can be done with:

```bash
uv sync --group notebooks
```
Examples showing what you can do with pythermogis can be found in the `examples` directory.

To open the jupyter notebook application you can run:

```bash
uv run --with jupyter jupyter lab
pixi run jupyter lab
```

From there navigate to the `examples` directory and open the notebooks you want to run.
+2192 −100

File changed.

Preview size limit exceeded, changes collapsed.

+7 −5
Original line number Diff line number Diff line
@@ -75,6 +75,7 @@ python-dotenv = ">=1.2.1,<2"
numba = ">=0.63.1,<0.64"
ruff = ">=0.14.10,<0.15"
install-jdk = "==1.1.0"
jupyterlab = ">=4.5.6,<5"

[tool.ruff]
line-length = 88
@@ -96,12 +97,13 @@ select = [
    "I",
]

[tool.pixi.environments]
default = { solve-group = "default" }
notebooks = { features = ["notebooks"], solve-group = "default" }

[dependency-groups]
dev = [
    "build>=1.4.0",
    "pytest>=9.0.2",
]
notebooks = [
    "ipykernel>=7.2.0",
    "jupyterlab>=4.5.5",
    "pixi-kernel",
]