「JupyterLab」の版間の差分
提供: Eospedia
(→アップデート方法) |
|||
| 行7: | 行7: | ||
== アップデート方法 == | == アップデート方法 == | ||
$ pip install --upgrade jupyterlab | $ pip install --upgrade jupyterlab | ||
| + | |||
| + | == 起動中のJupyterサーバープロセスの確認 == | ||
| + | $ jupyter-notebook list | ||
| + | |||
| + | == 起動中のJupyterサーバープロセスの停止 == | ||
| + | $ jupyter-notebook list | ||
| + | で、http://localhost:8888/... のリストが見えるが、localhost:の後ろの数字がJupyterサーバーがlistenしているポート番号を表す。 | ||
| + | |||
| + | それで、 | ||
| + | $ jupyter-notebook stop <ポート番号> | ||
| + | とすれば当該サーバープロセスは停止される。 | ||
| + | |||
| + | == 拡張機能 == | ||
| + | === <u>jupyterlab-vim</u> === | ||
| + | * https://github.com/jwkvam/jupyterlab-vim | ||
| + | * JupyterLabのvimバインディングを提供 | ||
| + | |||
| + | * アップグレード方法 | ||
| + | $ jupyter labextension install jupyterlab_vim | ||
2019年5月15日 (水) 06:34時点における版
目次
JupyterLabとは
インストール方法
アップデート方法
$ pip install --upgrade jupyterlab
起動中のJupyterサーバープロセスの確認
$ jupyter-notebook list
起動中のJupyterサーバープロセスの停止
$ jupyter-notebook list
で、http://localhost:8888/... のリストが見えるが、localhost:の後ろの数字がJupyterサーバーがlistenしているポート番号を表す。
それで、
$ jupyter-notebook stop <ポート番号>
とすれば当該サーバープロセスは停止される。
拡張機能
jupyterlab-vim
- https://github.com/jwkvam/jupyterlab-vim
- JupyterLabのvimバインディングを提供
- アップグレード方法
$ jupyter labextension install jupyterlab_vim