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
Glue is an open-source data exploration tool that allows users to visualize and analyze data in a way that is intuitive and easy to understand. This JupyterLab extension brings Glue's data exploration capabilities directly into JupyterLab, allowing users to seamlessly analyze and visualize data without leaving their JupyterLab environment.
10
10
11
-

11
+

12
12
13
13
## What is the difference with Glue-jupyter?
14
14
15
15
[`glue-jupyter`](https://github.com/glue-viz/glue-jupyter) is a library for creating a Glue "application" object directly in Python from a Jupyter Notebook (either using classic Notebook or JupyterLab) and create Glue "viewers" using tools like bqplot or Matplotlib.
16
16
17
-
Gluepyter is an extension that allows opening Glue sessions directly from the JupyterLab application. It reuses components of glue-jupyter for creating the viewers and the underlying Glue application object.
17
+
glue-jupyterlab is an extension that allows opening Glue sessions directly from the JupyterLab application. It reuses components of glue-jupyter for creating the viewers and the underlying Glue application object.
18
18
19
19
## Requirements
20
20
@@ -25,15 +25,15 @@ Gluepyter is an extension that allows opening Glue sessions directly from the Ju
25
25
To install the extension, execute:
26
26
27
27
```bash
28
-
pip install gluepyter
28
+
pip install glue-jupyterlab
29
29
```
30
30
31
31
## Uninstall
32
32
33
33
To remove the extension, execute:
34
34
35
35
```bash
36
-
pip uninstall gluepyter
36
+
pip uninstall glue-jupyterlab
37
37
```
38
38
39
39
## Troubleshoot
@@ -64,13 +64,13 @@ The `jlpm` command is JupyterLab's pinned version of
64
64
65
65
```bash
66
66
# Clone the repo to your local environment
67
-
# Change directory to the gluepyter directory
67
+
# Change directory to the glue-jupyterlab directory
68
68
# Install package in development mode
69
69
pip install -e ".[test]"
70
70
# Link your development version of the extension with JupyterLab
71
71
jupyter labextension develop . --overwrite
72
72
# Server extension must be manually installed in develop mode
73
-
jupyter server extension enablegluepyter
73
+
jupyter server extension enableglue-jupyterlab
74
74
# Rebuild extension Typescript source after making changes
0 commit comments