答案 0 :(得分:9)
转到python环境的site-packages
目录并修改site-packages/notebook/static/notebook/js/main.min.js
找到类似
的内容Notebook.options_default = {
// can be any cell type, or the special values of
// 'above', 'below', or 'selected' to get the value from another cell.
default_cell_type: 'code'
};
将default_cell_type: 'code'
更改为default_cell_type: 'markdown'
答案 1 :(得分:0)
在JupyterLab中,您可以转到Settings -> Advanced Settings manager -> Notebook
,然后在“用户首选项”中添加以下内容:
{
"defaultCell": "markdown"
}