Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyso-io/jupyterlab-extension
Jupyterlab extension to publish to Kyso
https://github.com/kyso-io/jupyterlab-extension
jupyterlab-extension
Last synced: 3 months ago
JSON representation
Jupyterlab extension to publish to Kyso
- Host: GitHub
- URL: https://github.com/kyso-io/jupyterlab-extension
- Owner: kyso-io
- Created: 2018-08-27T14:40:44.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-09-25T12:44:08.000Z (about 1 year ago)
- Last Synced: 2024-07-03T21:20:29.541Z (4 months ago)
- Topics: jupyterlab-extension
- Language: Jupyter Notebook
- Homepage: https://kyso.io
- Size: 3.53 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-starred - kyso-io/jupyterlab-extension - Jupyterlab extension to publish to Kyso (others)
README
# jupyterlab-kyso
## Prerequisites
* JupyterLab 0.35 or more
* A Kyso account## Installation
Check your version of Jupyterlab using the following command
```bash
jupyter-lab --version
0.35.2
```### JupyterLab 0.35 or above
To install this extension into JupyterLab (requires node 5 or later), do the following:
```bash
jupyter labextension install @kyso/jupyterlab
pip install kyso_jupyterlab
jupyter serverextension enable --sys-prefix kyso_jupyterlab
```## Development
For a development install, do the following in the repository directory:
```bash
yarn
yarn run build
jupyter labextension install . --no-build
yarn run watch
``````bash
# and in another shell
jupyter lab --watch
```## Deployment
To publish the client side extension:
```
npm publish
```To publish the server side extension:
```
python3 setup.py sdist
twine upload dist/*
```