https://github.com/davidbrochart/jupyterlab-cell-editor
https://github.com/davidbrochart/jupyterlab-cell-editor
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/davidbrochart/jupyterlab-cell-editor
- Owner: davidbrochart
- Created: 2018-02-07T11:41:39.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-07T11:57:24.000Z (about 8 years ago)
- Last Synced: 2025-01-12T13:50:41.581Z (about 1 year ago)
- Language: TypeScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jupyterlab-cell-editor
Edit the content of the cell with the Jupyterlab text editor or with a terminal-based text editor (like Vim)
## Prerequisites
* JupyterLab
## Installation
```bash
jupyter labextension install jupyterlab-cell-editor
```
## Development
For a development install (requires npm version 4 or later), do the following in the repository directory:
```bash
npm install
npm run build
jupyter labextension link .
```
To rebuild the package and the JupyterLab app:
```bash
npm run build
jupyter lab build
```