You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Develop your new content on a branch. See [JupyterBook Docs](https://jupyterbook.org/en/stable/intro.html) for guides on adding `.md`, `.ipynb` and other content.
54
60
@@ -58,18 +64,45 @@ git add .
58
64
git commit -m "added pages x,y and improved z"
59
65
```
60
66
61
-
## Preview your changes
67
+
###Preview your changes
62
68
63
69
Running jupyterbook will execute notebooks and render HTML pages for the website. Be sure to fix any execution errors and preview the website in your web browser to make sure everything looks good!
Follow the link reported in a terminal to open a pull request!
83
+
84
+
## Instructions for environment management
85
+
86
+
[`pixi`](https://pixi.sh) can be used to create and update a multi-platform lockfile, so a reproducible set of package versions is installed across different operating systems.
87
+
88
+
Dependencies (with optional pins) are specified in the `pyproject.toml` file, and specific locked versions for all platforms are kept in `pixi.lock`.
89
+
90
+
Install environment from the lockfile
91
+
92
+
```
93
+
pixi install
94
+
pixi shell # activate environment, "exit" to deactivate
Copy file name to clipboardexpand all lines: README.md
+3-10
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,12 @@ All notebooks can be run via the Mybinder.org 'Launch Binder' badge at the top o
16
16
17
17
#### Github Codespaces
18
18
19
-
This tutorial is available to run within [Github Codespaces](https://github.com/features/codespaces) - "a development environment that's hosted in the cloud" - with the conda environment specification in the [`conda-lock.yml`](conda/conda-lock.yml) file.
19
+
This tutorial is available to run within [Github Codespaces](https://github.com/features/codespaces) - "a development environment that's hosted in the cloud"
20
20
21
21
[](https://codespaces.new/xarray-contrib/xarray-tutorial/tree/main)
22
22
23
23
☝️ Click the button above to go to options window to launch a Github codespace.
24
24
25
-
A codespace is a development environment that's hosted in the cloud.
26
25
GitHub currently gives every user [120 vCPU hours per month for free](https://docs.github.com/en/billing/managing-billing-for-github-codespaces/about-billing-for-github-codespaces#monthly-included-storage-and-core-hours-for-personal-accounts), beyond that you must pay. **So be sure to explicitly stop or shut down your codespace when you are done by going to this page (https://github.com/codespaces).**
27
26
28
27
Once your codespace is launched, the following happens:
@@ -34,18 +33,12 @@ Once your codespace is launched, the following happens:
34
33
35
34
#### Locally
36
35
37
-
You can also run these notebooks on your own computer! We recommend using [`micromamba`](https://mamba.readthedocs.io/en/latest/installation.html#micromamba) or [`conda-lock`](https://conda-incubator.github.io/conda-lock/) to ensure a fully reproducible Python environment:
36
+
You can also run these notebooks on your own computer! We recommend using [`pixi`](https://pixi.sh/latest/#installation) to ensure a fully reproducible Python environment:
0 commit comments