隠しファイルをどうやって表示すればよいでしょうか? #10
Answered
by
icoxfog417
icoxfog417
asked this question in
Q&A
-
|
Beta Was this translation helpful? Give feedback.
Answered by
icoxfog417
Aug 12, 2022
Replies: 1 comment
-
2つの手順が必要です。こちらはStudio LabというよりJupyterLabの手順になります。 1. Settings > Advanced Settings > File Browserから
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
icoxfog417
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
2つの手順が必要です。こちらはStudio LabというよりJupyterLabの手順になります。
1. Settings > Advanced Settings > File Browserから
Show hidden files
をオンにします。2. Jupyter Serverの起動設定に
ContentsManager.allow_hidden = True
を追加します。jupyter server --generate-config
を実行して、デフォルトの設定ファイルを作成します。home/studio-lab-user/.jupyter/jupyter_server_config.py
が作成されるので、nanoのエディタなどで開いてc.ContentsManager.allow_hidden = True
を追記(F6でc.ContentsManager
の設定箇所が検索ができます)詳細はConfiguring a Jupyter Serverを参照してください。
3. Jupyter Serverを再起動
4. 表示されることを確認
詳細はDisplaying Hidden filesを参照してください。