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
[JupyterLite](https://jupyterlite.readthedocs.io/en/latest/) is a JupyterLab distribution that runs entirely in the browser built from the ground-up using JupyterLab components and extensions.
12
+
13
+
To use itkwidgets in a JupyterLite deployment, install the
JupyterLab 3 federated extension. Optionally, pre-install the itkwidgets wheel
16
+
and its dependency. In the Pyodide notebook,
17
+
18
+
```python
19
+
import piplite
20
+
piplite.install("itkwidgets==1.0a5")
21
+
```
22
+
23
+
Here we are installing the specific pre-release version pre-installed. See
24
+
also [the JupyterLite configuration used for this documentation](https://github.com/InsightSoftwareConsortium/itkwidgets/blob/main/docs/jupyterlite_config.json) and the
Google Colab is a free-to-use hosted Jupyter notebook service that provides
31
+
[Google Colab](https://research.google.com/colaboratory/) is a free-to-use hosted Jupyter notebook service that provides
6
32
computing resources including GPUs and itkwidgets is now supported in Colab
7
33
notebooks! You can get started with a demo notebook: [](https://colab.research.google.com/github/InsightSoftwareConsortium/itkwidgets/blob/main/examples/Hello3DWorld.ipynb)
8
34
@@ -13,8 +39,7 @@ Or visit the [welcome page](https://colab.research.google.com/?utm_source=scs-in
13
39
Notebooks can be uploaded from a repository, Google Drive, or your local machine.
14
40
15
41
16
-
Jupyter Notebook
17
-
----------------
42
+
## Jupyter Notebook
18
43
19
44
To use itkwidgets locally first [install Jupyter Notebook](https://jupyter.org/install#jupyter-notebook) and start Jupyter:
20
45
@@ -26,14 +51,13 @@ jupyter notebook
26
51
If you'd rather interact with remotely hosted notebooks you can also open them
27
52
in Binder: [](https://mybinder.org/v2/gh/InsightSoftwareConsortium/itkwidgets/main?urlpath=%2Fnotebooks%2Fexamples%2F)
28
53
29
-
Jupyterlab
30
-
----------
54
+
## JupyterLab
31
55
32
56
To use itkwidgets locally first [install JupyterLab](https://jupyter.org/install#jupyterlab) and start Jupyter:
33
57
34
58
```bash
35
59
pip install jupyterlab
36
-
jupyter-lab
60
+
jupyterlab
37
61
```
38
62
39
63
If you'd rather interact with remotely hosted notebooks in JupyterLab you can
0 commit comments