LoginSignup
0
0

More than 1 year has passed since last update.

ローカルのJupyter notebookファイルをnbviewerで公開する方法

Posted at

GitHubやgistで公開したり、ローカルにダウンロードせずに、サーバ上にあるnotebookファイルの中身を確認したい!

dockerでカレントディレクトリを/notebookにマウントして、nbviewerの--localfilesオプションで/notebookを公開する。
--localfilesオプションの使い方の情報がなさすぎて困った。

docker run --rm -p 8080:8080 -v $(pwd):/notebook jupyter/nbviewer python -m nbviewer --port=8080 --localfiles=/notebook

これで、http://[hostname]:8080/localfile/にアクセスするとファイル一覧が表示される。
Serving local notebooks in /notebook, this can be a security riskだそうですので注意。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0