-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DOC] Add JupyterLab Extension docs page (#752)
Co-authored-by: gabalafou <[email protected]>
- Loading branch information
1 parent
72834c8
commit d345670
Showing
5 changed files
with
78 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+71.1 KB
docusaurus-docs/jupyterlab-conda-store/images/conda-store-menu-item.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
--- | ||
title: Introduction | ||
description: Introduction to JupyterLab Extension. | ||
--- | ||
|
||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
|
||
# conda-store JupyterLab extension | ||
|
||
An extension to use the [conda-store UI][conda-store-ui] - a React-based frontend for conda-store, within JupyterLab. | ||
|
||
## Install 📦 | ||
|
||
1. Pre-requisites: `conda-store-server`, JupyterLab >= 3.0 and <= 4.0, and Python >= 3.8 installed. | ||
|
||
2. Install the extension: | ||
|
||
<Tabs> | ||
|
||
<TabItem value="conda" label="conda" default> | ||
|
||
```bash | ||
conda install -c conda-forge jupyter-lab-conda-store | ||
``` | ||
|
||
</TabItem> | ||
|
||
<TabItem value="pip" label="pip" default> | ||
|
||
```bash | ||
pip install jupyterlab-conda-store | ||
``` | ||
|
||
</TabItem> | ||
|
||
</Tabs> | ||
|
||
3. Start JupyterLab: | ||
|
||
```bash | ||
jupyter lab | ||
``` | ||
|
||
4. (Optional) Uninstall the extension | ||
|
||
<Tabs> | ||
<TabItem value="conda" label="conda" default> | ||
|
||
```bash | ||
conda uninstall jupyter-lab-conda-store | ||
``` | ||
</TabItem> | ||
<TabItem value="pip" label="pip" default> | ||
|
||
```bash | ||
pip uninstall jupyterlab-conda-store | ||
``` | ||
</TabItem> | ||
</Tabs> | ||
|
||
## Usage | ||
|
||
In the JupyterLab window, click on the `conda-store` menu bar item to open the UI in a new window within JupyterLab: | ||
|
||
![JupyterLab window's menu bar with `conda-store` at the end of the list containing the `Conda Store Package Manager` option](./images/conda-store-menu-item.png) | ||
|
||
Learn to use the interface with [conda-store UI tutorials][cs-ui-tutorials]. | ||
|
||
<!-- Internal links --> | ||
|
||
[conda-store-ui]: /conda-store-ui/introduction | ||
[cs-ui-tutorials]: /conda-store-ui/tutorials |