2
1

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.

Amazon SageMaker JupyterLabで行番号をデフォルト表示したい

Posted at

はじめに

Amazon SageMakerのJupyterLabで行番号をデフォルト表示する手順です。

参考

手順

  1. ノートブックインスタンスを起動し、JupyterLab を開いた状態で、「Settings」→「Advanced Settings Editor」を開く

  2. 「Notebook」を選択する
     左側に「System Defaults」、右側に「User Preferences」が表示される

  3. 「System Defaults」の中身を「User Preferences」にコピーする

  4. 右側「User Preferences」の

{
     "lineNumbers": false
}```
を
```"codeCellConfig": {
      "lineNumbers": true
}```
に変更する。

5. 右上のフロッピーボタン「Save User Settings」を押すと設定が保存される。

6. Notebookを開き直すと、行番号がデフォルト表示される!
(うまく反映されない場合はJupyterLab再起動もしくはノートブックインスタンスの再起動をする)

#おわりに
Amazon SageMakerのJupyterLabで行番号をデフォルト表示する手順が見つからなかったので記事にしました。

初投稿です。pythonの知識とともに語彙力も上げたいな。
2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?