修改 jupyter notebook
配置文件即可实现。
1.配置文件路径
在 cmd
中查看 jupyter
的配置文件路径,一般都是 .jupyter
的文件夹。
jupyter --config-dir
# C:\Users\Hider\.jupyter
2.打开文件
nbconfig/notebook.json
文件及路径不存在时,自行创建。
3.添加配置
添加一下代码,保存为 json
格式。
{
"MarkdownCell": {
"cm_config": {
"lineWrapping": true
}
},
"CodeCell": {
"cm_config": {
"lineWrapping": true
}
}
}
4.重启 jupyter notebook
搞定!!!