[TOC]
相关链接
- Jupyter notebook远程访问服务器的方法
- 远程连接服务器jupyter notebook、浏览器以及深度学习可视化方法
- 远程访问jupyter notebook
- jupyter notebook启动出错解决方法
- 【推荐】最详尽使用指南:超快上手Jupyter Notebook
- 修改主题: https://github.com/dunovank/jupyter-themes
- 安装插件:https://github.com/ipython-contrib/jupyter_contrib_nbextensions
一、Jupyter Notebook
安装
1 | python -m pip install jupyter # 先检查,后安装 |
密码
1 | python # 命令行 |
配置
- 打开上面生成的文件
- 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 | python -m pip install jupyter_contrib_nbextensions |
配置
- 重新打开jupyter,刷新首页,点击:
Nbextensions
,选择插件 - 非正常情况下:http:ip地址:8888/nbextensions?nbextension=codefolding/main
1 | Codefolding # 折叠标题 |
三、输入命令
- 在命令前加一个英文感叹号:
!
- 例如:
! cd data_dir/