LoginSignup
5
4

More than 3 years have passed since last update.

Jupyter notebookでコードを折返したい。

Last updated at Posted at 2019-10-02

Jupyter notebookでコードの折返しをしたかったが、日本語での解説記事が少なかったので、メモ程度に記しておきます。

Jupyterの設定フォルダ(私のWin環境ではC:\Users\(UserName)\.jupyter)の下、フォルダnbconfoigの中にあるnotebook.jsonに以下を追記する。

notebook.json
{
    "Cell": {
        "cm_config": {
            "lineWrapping": true
        }
    }
}

より良いコーディング環境を!

5
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
5
4