6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

JupyterLabで隠しファイルが表示されるようにするための設定方法

Posted at

はじめに

JupyterLabを立ち上げた後のフォルダ一覧に隠しファイルが表示されないのがたまに不便に感じる時があったので調べました。
ここでは、JupyterLabのconfigファイルに設定を追加して対応します。

方法

JupyterLabのconfigファイルがない方は下記のコマンドを実行の上作成してください。

$ jupyter-lab --generate-config

configファイルがある方は下記のように設定を追加してください。

~/.jupyter/jupyter_lab_config.py
## Allow access to hidden files
c.ContentsManager.allow_hidden = True

これでJupyterLabのフォルダに隠しファイルも表示されるようになります。

面倒だなぁと思った方はコマンド実行時にオプションとして渡すことでできます。このコマンドのaliasなどを組むと良いと思います。

$ jupyter lab --ContentsManager.allow_hidden=True
6
4
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
6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?