https://github.com/mryutaro/elastickernel
ElasticKernel: An IPython Kernel that automatically saves and restores Jupyter Notebook execution states.
https://github.com/mryutaro/elastickernel
ipython-kernel jupyter-notebook jupyterlab python
Last synced: 4 months ago
JSON representation
ElasticKernel: An IPython Kernel that automatically saves and restores Jupyter Notebook execution states.
- Host: GitHub
- URL: https://github.com/mryutaro/elastickernel
- Owner: MRyutaro
- License: apache-2.0
- Created: 2025-01-02T14:47:44.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-10T17:09:48.000Z (6 months ago)
- Last Synced: 2025-08-31T13:43:51.481Z (4 months ago)
- Topics: ipython-kernel, jupyter-notebook, jupyterlab, python
- Language: Python
- Homepage: https://pypi.org/project/elastic-kernel/
- Size: 304 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ElasticKernel
ElasticKernel: An IPython Kernel that automatically saves and restores Jupyter Notebook execution states.
## 使用方法
### Dockerを用いた方法
1. イメージをプルする
```sh
docker pull ghcr.io/mryutaro/elastickernel
```
2. コンテナを起動する
```sh
docker run -p 8888:8888 ghcr.io/mryutaro/elastickernel
```
3. ブラウザからJupyterLabにアクセスする
4. Python 3 (Elastic)のカーネルを選択する
### ローカルでの使用方法
1. ライブラリをインストールする
```sh
$ uv pip install elastic-kernel
```
2. カーネルをインストールする
```sh
$ elastic-kernel install
Elastic Kernel installed from: /path/to/elastic_kernel
```
3. カーネルがインストールされたか確認する
```sh
$ jupyter kernelspec list
Available kernels:
elastic_kernel /Users/matsumotoryutaro/Library/Jupyter/kernels/elastic_kernel
```
4. JupyterLabを起動する
5. ブラウザからJupyterLabにアクセスする
6. Python 3 (Elastic)のカーネルを選択する
## 開発者向け資料
[ここ](/docs/developers.md)を参考にしてください.