Jupyter Notebook 使用教程

[TOC]

相关链接

一、Jupyter Notebook

安装

1
2
python -m pip install jupyter           # 先检查,后安装
jupyter notebook --generate-config # 记录生成的文件

密码

1
2
3
4
5
6
7
python  # 命令行
from notebook.auth import passwd
passwd()

Enter password: # 输入密码
Verify password: # 验证密码
Out[2]: 'sha1:ce23dxxxxxxxxxx' # 复制密文

配置

  • 打开上面生成的文件
  • vim ~/.jupyter/jupyter_notebook_config.py
    1
    2
    3
    4
    5
    6
    # 在文件最后面添加:
    c.NotebookApp.ip='*' # 也可以指定具体 ip
    c.NotebookApp.password = u'sha:ce...刚才复制的那个密文'
    c.NotebookApp.open_browser = False # 禁止自动打开浏览器
    c.NotebookApp.port = 8888 # 随便指定一个端口
    c.InteractiveShellApp.matplotlib = 'inline' # 显示Matplotlib的图形

打开

  • 在指定目录打开cmd或者命令行,输入:jupyter notebook
  • 浏览器输入地址:localhost:8888

二、插件

安装

1
2
3
python -m pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
jupyter nbextension enable codefolding/main

配置

  • 重新打开jupyter,刷新首页,点击:Nbextensions,选择插件
  • 非正常情况下:http:ip地址:8888/nbextensions?nbextension=codefolding/main
1
2
3
4
5
Codefolding             # 折叠标题
Collapsible headings # 折叠代码
ExecuteTime # 执行时间
Notify # 发送通知
Table of Contents # 自动生成目录

三、输入命令

  • 在命令前加一个英文感叹号:!
  • 例如:! cd data_dir/
坚持原创技术分享,您的支持将鼓励我继续创作!
0%