https://github.com/quiltdata/jupyterlab
https://github.com/quiltdata/jupyterlab
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/quiltdata/jupyterlab
- Owner: quiltdata
- Created: 2017-11-17T19:43:10.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-26T23:41:44.000Z (almost 8 years ago)
- Last Synced: 2025-03-24T16:26:14.778Z (about 1 year ago)
- Language: TypeScript
- Size: 19.5 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jupyterlab_quilt
Quilt Data plugin for JupyterLab
## Prerequisites
### JupyterLab
This plugin is developed using the latest conda version of Jupyter Lab. Note that Jupyter Lab is in alpha, and conda builds may not be stable. The developer APIs are also unstable, and this extension may break with any update to Jupyter Lab. Please file a GitHub Issue if you have any difficulties.
The instructions to install Jupyter Lab are [here](https://github.com/jupyterlab/jupyterlab#installation).
## Install
```bash
pip install quilt
pip install jupyter -U
pip install jupyterlab
jupyter labextension install jupyterlab-quilt
```
## Run
```bash
jupyter lab
```
## Development
For a development install (requires npm version 4 or later), do the following in the repository directory:
```bash
npm install
npm run watch
jupyter labextension link .
```
To rebuild the package and the JupyterLab app:
```bash
npm run build
jupyter lab build
```