Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vidartf/jupyterlab_discovery
A JupyterLab extension to facilitate the discovery and installation of other extensions
https://github.com/vidartf/jupyterlab_discovery
jupyterlab jupyterlab-extension
Last synced: 18 days ago
JSON representation
A JupyterLab extension to facilitate the discovery and installation of other extensions
- Host: GitHub
- URL: https://github.com/vidartf/jupyterlab_discovery
- Owner: vidartf
- License: other
- Archived: true
- Created: 2017-12-18T16:28:01.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-21T10:58:08.000Z (almost 6 years ago)
- Last Synced: 2024-10-20T05:15:51.386Z (25 days ago)
- Topics: jupyterlab, jupyterlab-extension
- Language: TypeScript
- Size: 231 KB
- Stars: 47
- Watchers: 9
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-jupyterlab - jupyterlab_discovery - A JupyterLab extension to facilitate the discovery and installation of other extensions (Uncategorized / Uncategorized)
README
# jupyterlab_discovery
[![Documentation Status](https://readthedocs.org/projects/jupyterlab-discovery/badge/?version=stable)](http://jupyterlab-discovery.readthedocs.io/en/stable/?badge=stable)
A JupyterLab extension to facilitate the discovery and installation of other extensions.
***Note: This extension has now been included in the core of JupyterLab!***
It has been included as the [extension manager]. To enable it:
- Go into advanced settings editor.
- Open the Extension Manager section.
- Add the entry `"enabled": true`.
- Save the settings.
- If prompted whether you are sure, read the warning, and click "Enable" if you're still sure ;)## Prerequisites
* JupyterLab
## Installation
```bash
pip install jupyterlab-discovery
```For older versions of jupyter notebook, you will also need to run
```bash
jupyter serverextension enable [--sys-prefix|--user|--system] jupyterlab_discovery
```## Documentation
Visit http://jupyterlab-discovery.readthedocs.io/
## Development
For a development install (requires npm version 4 or later), do the following in the repository directory:
```bash
pip install -e .
jupyter labextension install .
jupyter serverextension enable [--sys-prefix|--user|--system] jupyterlab_discovery
```To rebuild the package and the JupyterLab app:
```bash
jupyter lab build
```