pip install jupyter
conda install jupyter notebook
# 两者选其一
jupter notebook --help
jupter notebook -h
# 默认端口启动
jupyter notebook
# 指定端口启动
jupyter notebook --port <port_number>
# 启动服务器但不打开浏览器
jupyter notebook --no-browser
快捷键 | 用途 |
---|---|
F | 查找和替换 |
Enter | 进入编辑模式 |
ctrl+shift+F/P | 打开命令选项板 |
shift+Enter | 执行当前单元格并选中下一单元格 |
Y | 单元格切换至code状态 |
M | 单元格切换至Markdown状态 |
1~6 | 将单元格分别设置为一到六级标题 |
K | 选中上方单元格 |
J | 选中下方单元格 |
X | 剪切选中单元格 |
C | 复制选中单元格 |
V | 粘贴到下方单元格 |
D,D | 删除选中单元格 |
S | 保存 |
L | 转换行号 |
O | 转换输出 |
H | 显示快捷键帮助 |