Skip to content

Commit

Permalink
[DOC] Add JupyterLab Extension docs page (conda-incubator#752)
Browse files Browse the repository at this point in the history
Co-authored-by: gabalafou <[email protected]>
  • Loading branch information
pavithraes and gabalafou committed Mar 14, 2024
1 parent 72834c8 commit d345670
Show file tree
Hide file tree
Showing 5 changed files with 78 additions and 13 deletions.
5 changes: 5 additions & 0 deletions docusaurus-docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@ const config = {
'⚠️ We are in the process of revamping our docs, some pages may be incomplete or inaccurate. ⚠️',
isCloseable: false,
},
docs: {
sidebar: {
hideable: true,
},
},
}),
};

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 0 additions & 6 deletions docusaurus-docs/jupyterlab-conda-store/install-extension.md

This file was deleted.

7 changes: 0 additions & 7 deletions docusaurus-docs/jupyterlab-conda-store/introduction.md

This file was deleted.

73 changes: 73 additions & 0 deletions docusaurus-docs/jupyterlab-conda-store/introduction.mdx
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 &gt;= 3.0 and &lt;= 4.0, and Python &gt;= 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

0 comments on commit d345670

Please sign in to comment.